mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
21 lines
515 B
HTML
21 lines
515 B
HTML
|
<p>{% if cave.get_QMs %}
|
||
|
<h2>Question marks</h2>
|
||
|
<h3>Extant</h3>
|
||
|
<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>
|