mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-01-18 17:02:31 +00:00
25 lines
399 B
HTML
25 lines
399 B
HTML
{% extends "cavebase.html" %}
|
|
|
|
|
|
{% block title %}Entrance Index{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Entrance Index</h1>
|
|
|
|
<table>
|
|
<theader>
|
|
<tr><th>Name</th><th>Point</th><th>Position</th>tr>
|
|
</theader>
|
|
<tbody>
|
|
<ul>
|
|
{% for entrance in entrances %}
|
|
<tr><td>{{ entrance }}</td><td>{{ entrance.best_station }}</td><td>{{ entrance.latlong }}</td></tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</ul>
|
|
|
|
|
|
|
|
{% endblock %}
|