{% extends "base.html" %} {% block title %}Cave Entrance locations in UTM{% endblock %} {% block content %}

Entrance locations

These are all the locations specified in Northing/Easting coordinates in the system. {% for ent in ents %} {% endfor %}
CaveEntranceEastingNorthingtagtag exacttag otherslug
{% for c in ent.cavelist %}{{c.official_name|safe}}{% endfor %} {{ent.name|safe}} {{ent.easting|floatformat:2}} {{ent.northing|floatformat:2}} {{ent.tag_station}} {{ent.exact_station}} {{ent.other_station}} {{ent.slug}}

But the Entrances - the objects in the troggle system - are not properly connected to the dataset which is the combined set of survex data. They are only linked - and only implicitly - by the tag name. {% for s in stations %} {% endfor %}
Survex Stationxy
{{s.name|safe}} {{s.x|floatformat:2}} {{s.y|floatformat:2}}
{% endblock %}