Question marks for {{cave.kataster_number}} - {{cave.official_name|safe}} - {{cave.unofficial_number}}
Note that QMs are only loaded for 1623-161, 1623-204 and 1623-234 as these are the only CSV files loaded by the import parser.
No QMs are loaded directly from the survex files (yet, as of July 2022).
Extant
{% if cave.get_QMs %}
{% for QM in cave.get_QMs %}
{% if QM.ticked_off_by %}
{% else %}
- {{QM}} {{QM.nearest_station_name}} :: {{QM.nearest_station_description}} {{QM.cave}}
{% endif %}
{% endfor %}
Ticked off
{% for QM in cave.get_QMs %}
{% if QM.ticked_off_by %}
- {{QM}} {{QM.nearest_station_name}} :: {{QM.nearest_station_description}} {{QM.cave}}
{% endif %}
{% endfor %}
{% endif %}