{% 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.
entrance |
ent map |
{% for ent in ents %}
{% if ent.map_description %}
#{{ent.id}} {{ent}}
|
{{ent.map_description}}
|
{% endif %}
{% endfor %}
entrance |
ent slug |
Best station |
Location |
Bearings |
{% for ent in ents %}
{% if ent.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}}
|
{% endif %}
{% endfor %}
Caves with a specific field set
Cave |
slug |
underground_centre_line |
{% for c in caves%}
{% if c.kataster_status %}
{{c}}
|
{{c.slug}}
|
{{c.kataster_status |safe}}
|
{% endif %}
{% endfor %}
{% endblock %}