2022-07-05 15:02:43 +01:00
{% extends "base.html" %}
{% load link %}
{% block title %} QM: {{qm|safe}} {% endblock %}
{% block contentheader %}
2023-03-19 19:12:09 +00:00
< h2 > Question marks for < a href = "/{{cave.url}}" > {{cave.kataster_number}} {% if cave.official_name %}- {{cave.official_name|safe}}{% endif %}< / a > {% if cave.unofficial_number %} - ({{cave.unofficial_number|safe}}){% endif %}< / h2 >
2022-07-05 13:38:23 +01:00
2022-07-05 18:24:51 +01:00
< p > Note that QMs loaded for 1623-161, 1623-204 and 1623-234 are imported from CSV files .
2022-07-05 13:38:23 +01:00
< ul >
2022-07-20 12:44:56 +01:00
< li > < a href = "{% url 'caveQMs' '1623-161' %}" > 1623-161 QMs< / a > Maybe OUT OF DATE. See < a href = "/1623/161/qmdone.htm" > the manually curated list < b > instead< / b > < / a >
< li > < a href = "{% url 'caveQMs' '1623-204' %}" > 1623-204 QMs< / a > Maybe OUT OF DATE. See < a href = " /1623/204/qm.html" > the manually curated list < b > instead< / b > < / a >
2022-07-06 11:44:40 +01:00
< li > < a href = "{% url 'caveQMs' '1623-234' %}" > 1623-234 QMs< / a >
2022-07-05 13:38:23 +01:00
< / ul >
2022-07-18 17:19:30 +01:00
< p > QMs are also loaded directly from the survex files, e.g. see
2022-07-05 18:24:51 +01:00
< 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
2022-07-20 15:25:36 +01:00
< li > < a href = "{% url 'caveQMs' '1623-291' %}" > 1623-291 QMs< / a > Happy Butterfly
2022-07-20 15:02:38 +01:00
< li > < a href = "{% url 'caveQMs' '1626-359' %}" > 1626-359 QMs< / a > Homecoming
2022-07-06 11:44:40 +01:00
< / ul >
2023-03-17 20:01:52 +00:00
< p > For how to set up your own QMs, see < a href = "/handbook/survey/qmentry.html" > Adding QMs < / a > .
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 %}
2023-03-19 19:12:09 +00:00
< hr / >
{{cave.slug}} - all < a href = "/survexfile/{{cave.kataster_number}}" > Survexfiles< / a > < br / >
{{cave.slug}} - < a href = "/survexfile/{{cave.survex_file}}" > Primary survexfile< / a >
2023-03-17 20:01:52 +00:00
< h3 > Open leads< / h3 >
< ul > {% for QM in cave.get_open_QMs %}
2023-03-11 21:14:35 +00:00
< li > < a href = "{{QM.get_absolute_url}}" > {{QM}}< / a >
2023-03-19 19:12:09 +00:00
{% if QM.nearest_station_name %}§ < em > < span style = "font-family: monospace" > {{QM.nearest_station_name|safe}}< / span > < / em > § {% endif %}
2023-03-18 03:03:06 +00:00
{{QM.location_description|safe}} < b > {{QM.grade}}< / b >
{% if QM.block %} < a href = "/survexfile/{{QM.block.survexfile.path}}.svx" > {{QM.block}}.svx< / a > {{QM.block.date|date:'Y-m-d'}} {% endif %}
{% if QM.comment %}
< span style = "color:red;" > {{QM.comment}}< / span > {% endif %}
2023-03-17 20:01:52 +00:00
{% empty %}
< li > No open leads.
2011-07-11 00:50:07 +01:00
{% endfor %}
< / ul >
2023-03-17 20:01:52 +00:00
§ QM.nearest_station_name< br / >
2023-03-18 00:57:40 +00:00
☆ QM.resolution_station_name - when ticked.< br / >
2011-07-11 00:50:07 +01:00
< h3 > Ticked off< / h3 >
2023-03-17 20:01:52 +00:00
< ul > {% for QM in cave.get_ticked_QMs %}
2023-03-11 21:14:35 +00:00
< li > < a href = "{{QM.get_absolute_url}}" > {{QM}}< / a >
2023-03-19 19:12:09 +00:00
{% if QM.nearest_station_name %}§ < em > < span style = "font-family: monospace" > {{QM.nearest_station_name|safe}}< / span > < / em > § {% endif %}
{% if QM.resolution_station_name %}< b > ☆ < em > < span style = "font-family: monospace" > {{QM.resolution_station_name|safe}}< / span > < / em > ☆ < / b > {% endif %}
2023-03-18 00:57:40 +00:00
{{QM.location_description|safe}} < b > {{QM.grade}}< / b >
2023-03-18 03:03:06 +00:00
{% if QM.block %} < a href = "/survexfile/{{QM.block.survexfile.path}}.svx" > {{QM.block}}.svx< / a > {{QM.block.date|date:'Y-m-d'}} {% endif %}
2022-07-20 12:44:56 +01:00
{% if QM.completion_description %}
2023-03-18 03:03:06 +00:00
⋮ < em > {{QM.completion_description|safe}}< / em > ⋮
2023-03-17 20:01:52 +00:00
{% endif %}
2023-03-18 03:03:06 +00:00
{% if QM.page_ref %}☉ < em > < a href = "/{{QM.cave.url_parent}}/{{QM.page_ref}}" > {{QM.page_ref}}< / a > < / em > ☉ {% endif %}
2023-03-17 20:01:52 +00:00
{% if QM.comment %}
2023-03-18 03:03:06 +00:00
< span style = "color:red;" > {{QM.comment}}< / span > {% endif %}
2023-03-17 20:01:52 +00:00
{% empty %}
< li > No ticked leads.
2011-07-11 00:50:07 +01:00
{% endfor %}
< / ul >
2023-03-17 20:01:52 +00:00
< / p >
§ QM.nearest_station_name< br / >
2023-03-18 00:57:40 +00:00
☆ QM.resolution_station_name - when ticked.< br / >
2023-03-18 03:03:06 +00:00
☉ QM.page_ref< br / >
⋮ QM.completion_description< br / >
< span style = "color:red;" > QM.comment< / span > < br / >
2022-07-05 15:02:43 +01:00
{% endblock %}