troggle-unchained/templates/cave_qms.html

21 lines
608 B
HTML
Raw Normal View History

2021-04-27 15:38:20 +01:00
<h2>Question marks for {{cave.kataster_number}} - {{cave.official_name|safe}} - {{cave.unofficial_number}}</h2>
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></li>
{% 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></li>
{% endif %}
{% endfor %}
</ul>
{% endif %}</p>