mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
35 lines
473 B
HTML
35 lines
473 B
HTML
{% extends "base.html" %}
|
|
{% block title %}DEBUG page
|
|
<!-- cave_debug.html - this text visible because this template has been included -->
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h2 id="cmult">Entrances</h2>
|
|
<table>
|
|
<tr><th>entrance</th>
|
|
<th>ent slug</th>
|
|
<th>N slugs</th>
|
|
<th>slugs</th>
|
|
</tr>
|
|
{% for ent in ents %}
|
|
<tr>
|
|
<td>
|
|
#{{ent.id}} {{ent}}
|
|
</td>
|
|
<td>
|
|
{{ent.slug}}
|
|
</td>
|
|
<td>
|
|
-
|
|
</td>
|
|
<td>
|
|
-
|
|
</td>
|
|
|
|
{% endfor %}
|
|
</table>
|
|
|
|
|
|
{% endblock %}
|