summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/entranceindex.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/entranceindex.html b/templates/entranceindex.html
index 30afdc4..520b090 100644
--- a/templates/entranceindex.html
+++ b/templates/entranceindex.html
@@ -9,12 +9,12 @@
<table>
<theader>
-<tr><th>Name</th><th>Point</th><th>Position</th>tr>
+<tr><th>Name</th><th>Caves</th><th>Point</th><th>Position</th></tr>
</theader>
<tbody>
<ul>
{% for entrance in entrances %}
-<tr><td>{{ entrance }}</td><td>{{ entrance.best_station }}</td><td>{{ entrance.latlong }}</td></tr>
+<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>
{% endfor %}
</tbody>
</ul>