2023-07-03 08:00:03 +01:00
|
|
|
{% extends "cavebase.html" %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block title %}Entrance Index{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<h1>Entrance Index</h1>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<theader>
|
2023-07-03 09:32:34 +01:00
|
|
|
<tr><th>Name</th><th>Caves</th><th>Point</th><th>Position</th></tr>
|
2023-07-03 08:00:03 +01:00
|
|
|
</theader>
|
|
|
|
<tbody>
|
|
|
|
<ul>
|
|
|
|
{% for entrance in entrances %}
|
2023-07-03 09:32:34 +01:00
|
|
|
<tr><td>{{ entrance }}</td><td>{% for cave in entrance.cavelist %}<a href="{{ cave.url }}">{{ cave }}</a>{% endfor %}</td><td>{{ entrance.best_station }}</td><td>{{ entrance.latlong }}</td></tr>
|
2023-07-03 08:00:03 +01:00
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|