mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 07:11:52 +00:00
30 lines
450 B
HTML
30 lines
450 B
HTML
|
{% 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 %}
|