{% extends "base.html" %} {% block title %}DEBUG page {% endblock %} {% block content %}

Entrances

These are Entrances read from the expoweb/entrance_data/*.html files. These are NOT the *entrance data points in the survex files. {% for ent in ents %} {% if ent.map_description %} {% endif %} {% endfor %}
entrance ent map
#{{ent.id}} {{ent}} {{ent.map_description}}
{% for ent in ents %} {% if ent.bearings %} {% endif %} {% endfor %}
entrance ent slug Best station Location Bearings
#{{ent.id}} {{ent}} {{ent.slug}} {% if ent.best_station %}{{ent.best_station}}{% endif %} {% if ent.best_station %}{{ent.best_station_object.latlong}}{% endif %} {{ent.bearings|safe}}

Caves with a specific field set

{% for c in caves%} {% if c.kataster_status %} {% endif %} {% endfor %}
Cave slug underground_centre_line
{{c}} {{c.slug}} {{c.kataster_status |safe}}
{% endblock %}