mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-28 10:02:10 +00:00
26 lines
755 B
HTML
26 lines
755 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Cave Entrance locations in UTM{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Entrance locations</h1>
|
|
|
|
<p>
|
|
This is work in progress (May 2021).
|
|
|
|
<table>
|
|
<tr><th>Entrance</th><th>Easting</th><th>Northing</th><th>tag</th><th>tag exact</th><th>tag other</th></tr>
|
|
{% for ent in ents %}
|
|
<tr>
|
|
<td style="text-align:left"><a href="{{ ent.name }}">{{ent.name|safe}}</a></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>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
|
|
{% endblock %} |