mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-24 16:21:53 +00:00
29 lines
999 B
HTML
29 lines
999 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Cave Entrance locations in UTM{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Entrance locations</h1>
|
|
|
|
<p>
|
|
These are all the locations specified in Northing/Easting coordinates in the system.
|
|
|
|
<table>
|
|
<tr><th>Cave</th><th>Entrance</th><th>Easting</th><th>Northing</th><th>tag</th><th>tag exact</th><th>tag other</th><th>slug</th></tr>
|
|
{% for ent in ents %}
|
|
<tr>
|
|
<td style="text-align:left"><a href="/cave/{{ent.cached_primary_slug}}">
|
|
{% for c in ent.cavelist %}{{c.official_name|safe}}{% endfor %}</a></td>
|
|
<td style="text-align:left">{{ent.name|safe}}</td>
|
|
<td style="text-align:right">{{ent.easting|floatformat:2}}</td>
|
|
<td style="text-align:right">{{ent.northing|floatformat:2}}</td>
|
|
<td style="text-align:right">{{ent.tag_station}}</td>
|
|
<td style="text-align:right">{{ent.exact_station}}</td>
|
|
<td style="text-align:right">{{ent.other_station}}</td>
|
|
<td style="text-align:right">{{ent.slug}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
|
|
{% endblock %} |