forked from expo/troggle
37 lines
596 B
HTML
37 lines
596 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>ent</th>
|
||
|
<th>cached_primary_slug</th>
|
||
|
<th>N slugs</th>
|
||
|
<th>slugs</th>
|
||
|
</tr>
|
||
|
{% for ent in ents %}
|
||
|
<tr>
|
||
|
<td>
|
||
|
{{ent}}
|
||
|
</td>
|
||
|
<td>
|
||
|
{{ent.cached_primary_slug}}
|
||
|
</td>
|
||
|
<td>
|
||
|
{{ent.entranceslug_set.all|length }}
|
||
|
</td>
|
||
|
<td>
|
||
|
{% for s in ent.entranceslug_set.all %}
|
||
|
{{s.slug}},
|
||
|
{% endfor %}
|
||
|
</td>
|
||
|
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
|
||
|
|
||
|
{% endblock %}
|