troggle-unchained/templates/cave_qms.html

44 lines
1.8 KiB
HTML
Raw Normal View History

2022-07-05 15:02:43 +01:00
{% extends "base.html" %}
{% load link %}
{% block title %} QM: {{qm|safe}} {% endblock %}
{% block contentheader %}
2021-04-27 15:38:20 +01:00
<h2>Question marks for {{cave.kataster_number}} - {{cave.official_name|safe}} - {{cave.unofficial_number}}</h2>
<p>Note that QMs loaded for 1623-161, 1623-204 and 1623-234 are imported from CSV files .
<ul>
2022-07-06 11:44:40 +01:00
<li><a href="{% url 'caveQMs' '1623-161' %}">1623-161 QMs</a>
<li><a href="{% url 'caveQMs' '1623-204' %}">1623-204 QMs</a>
<li><a href="{% url 'caveQMs' '1623-234' %}">1623-234 QMs</a>
</ul>
2022-07-18 17:19:30 +01:00
<p>QMs are also loaded directly from the survex files, e.g. see
<ul>
2022-07-18 17:19:30 +01:00
<li><a href="{% url 'caveQMs' '1623-264' %}">1623-264 QMs</a> Balkon
<li><a href="{% url 'caveQMs' '1623-258' %}">1623-258 QMs</a> Tunnocks
<li><a href="{% url 'caveQMs' '1623-290' %}">1623-290 QMs</a> Fischgesicht
<li><a href="{% url 'caveQMs' '1626-359' %}">1626-359 QMs</a> Homecoming (2018-dm-07)
2022-07-06 11:44:40 +01:00
</ul>
2022-07-05 15:40:31 +01:00
<p>For full explanation of the current status of the QM system(s), see <a href="/handbook/troggle/scriptsqms.html">scriptsqms page</a>.
2022-07-05 15:02:43 +01:00
{% endblock %}
{% block content %}
2011-07-11 00:50:07 +01:00
<h3>Extant</h3>
2021-04-27 15:38:20 +01:00
<p>{% if cave.get_QMs %}
2011-07-11 00:50:07 +01:00
<ul id="cavelist">
{% for QM in cave.get_QMs %}
{% if QM.ticked_off_by %}
{% else %}
<li><a href="{{QM.get_absolute_url}}">{{QM}}</a> :: {{QM.nearest_station_description}} {{QM.location_description}} <b>{{QM.grade}}</b></li>
2011-07-11 00:50:07 +01:00
{% endif %}
{% endfor %}
</ul>
<h3>Ticked off</h3>
<ul>
{% for QM in cave.get_QMs %}
{% if QM.ticked_off_by %}
<li><a href="{{QM.get_absolute_url}}">{{QM}}</a> :: {{QM.nearest_station_description}} {{QM.location_description}} <b>{{QM.grade}}</b></li>
2011-07-11 00:50:07 +01:00
{% endif %}
{% endfor %}
</ul>
{% endif %}</p>
2022-07-05 15:02:43 +01:00
{% endblock %}