2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-02-17 20:50:13 +00:00
troggle/templates/survexdir.html

27 lines
808 B
HTML
Raw Normal View History

2023-09-05 21:46:10 +03:00
<!-- svxcavesingle.html - this text visible because this template has been included -->
2023-11-03 16:54:44 +02:00
2023-09-05 21:46:10 +03:00
{% extends "base.html" %}
{% block title %}List of survex directories{% endblock %}
{% block content %}
{% autoescape off %}
2023-09-07 00:01:03 +03:00
<h1>Survex Primary files: per Cave and per directory</h1>
2023-09-05 21:46:10 +03:00
{% endautoescape %}
<h2>All SurvexFiles</h2>
<table>
2023-09-07 00:01:03 +03:00
<tr><th>Cave</th><th>Cave primary</th><th>f.primary</th><th>f.path</th></tr>
{% for f in survexfiles %}
<tr>
<td><a href="/cave/{{f.cave}}">{{f.cave}}</a> {{f.cave.areacode}}{% if f.cave.subarea %}-{{f.cave.subarea}}{% endif %}</td>
2023-09-07 00:01:03 +03:00
<td>{{f.cave.survex_file}}</td>
<td> {{f.primary}}.svx</td>
<td><span {% if f.pathbad %} style="color:red" {% endif %}><a href="/survexfile/{{f.path}}.svx">{{f.path}}.svx</a></span></td>
</tr>
{% endfor %}
</table>
2023-09-30 22:28:43 +03:00
2023-11-03 16:54:44 +02:00
2023-09-05 21:46:10 +03:00
{% endblock %}