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