forked from expo/troggle
fixed many problems in creating new entrances
This commit is contained in:
@@ -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 %}
|
||||
Reference in New Issue
Block a user