diff options
Diffstat (limited to 'templates/entranceindex.html')
-rw-r--r-- | templates/entranceindex.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/entranceindex.html b/templates/entranceindex.html new file mode 100644 index 0000000..30afdc4 --- /dev/null +++ b/templates/entranceindex.html @@ -0,0 +1,24 @@ +{% extends "cavebase.html" %} + + +{% block title %}Entrance Index{% endblock %} + +{% block content %} + +<h1>Entrance Index</h1> + +<table> +<theader> +<tr><th>Name</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> +{% endfor %} +</tbody> +</ul> + + + +{% endblock %} |