troggle-unchained/templates/cave_debug.html

35 lines
473 B
HTML
Raw Normal View History

2023-03-28 15:37:25 +01:00
{% 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>
2023-03-28 19:26:37 +01:00
<tr><th>entrance</th>
<th>ent slug</th>
2023-03-28 15:37:25 +01:00
<th>N slugs</th>
<th>slugs</th>
</tr>
{% for ent in ents %}
<tr>
<td>
#{{ent.id}} {{ent}}
2023-03-28 15:37:25 +01:00
</td>
<td>
{{ent.slug}}
2023-03-28 15:37:25 +01:00
</td>
<td>
2023-03-28 19:26:37 +01:00
-
2023-03-28 15:37:25 +01:00
</td>
<td>
2023-03-28 19:26:37 +01:00
-
2023-03-28 15:37:25 +01:00
</td>
{% endfor %}
</table>
{% endblock %}