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>
|
2023-10-07 00:24:41 +01:00
|
|
|
<p>These are Entrances read from the <var>expoweb/entrance_data/*.html</var> files. These are NOT the *entrance data points in the survex files.
|
2023-03-28 15:37:25 +01:00
|
|
|
<table>
|
2023-03-28 19:26:37 +01:00
|
|
|
<tr><th>entrance</th>
|
|
|
|
<th>ent slug</th>
|
2023-10-07 00:24:41 +01:00
|
|
|
<th>Best station</th>
|
|
|
|
<th>**</th>
|
2023-03-28 15:37:25 +01:00
|
|
|
</tr>
|
|
|
|
{% for ent in ents %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
2023-03-28 17:08:55 +01:00
|
|
|
#{{ent.id}} {{ent}}
|
2023-03-28 15:37:25 +01:00
|
|
|
</td>
|
|
|
|
<td>
|
2023-03-28 19:08:05 +01:00
|
|
|
{{ent.slug}}
|
2023-03-28 15:37:25 +01:00
|
|
|
</td>
|
|
|
|
<td>
|
2023-10-07 00:24:41 +01:00
|
|
|
{% if ent.best_station %}{{ent.best_station}}{% endif %}
|
2023-03-28 15:37:25 +01:00
|
|
|
</td>
|
|
|
|
<td>
|
2023-10-07 00:24:41 +01:00
|
|
|
{% if ent.best_station %}{{ent.best_station_object.latlong}}{% endif %}
|
2023-03-28 15:37:25 +01:00
|
|
|
</td>
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|