summaryrefslogtreecommitdiffstats
path: root/templates/caveslist.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/caveslist.html')
-rw-r--r--templates/caveslist.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/templates/caveslist.html b/templates/caveslist.html
new file mode 100644
index 0000000..d950fe4
--- /dev/null
+++ b/templates/caveslist.html
@@ -0,0 +1,29 @@
+{% extends "base.html" %}
+{% block title %}Caves List page
+<!-- caveslist.html - this text visible because this template has been included -->
+{% endblock %}
+
+{% block content %}
+
+<h2 id="cmult">Caves</h2>
+<p>Debug.. gets edited to whatever is needed by programmer..
+<table>
+<tr><th>Cave</th>
+<th>cave filename</th>
+
+
+
+</tr>
+{% for c in caves %}
+<tr>
+ <td>
+ {{c}}
+ </td>
+ <td>
+ {{c.filename}}
+ </td>
+{% endfor %}
+</table>
+
+
+{% endblock %}