2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-01-19 09:22:32 +00:00

bug fix for forgotten href

This commit is contained in:
Philip Sargent 2022-07-05 16:34:08 +03:00
parent 87fd260051
commit c9a33a4010

View File

@ -21,7 +21,7 @@
<ul> <ul>
{% for QM in cave.get_QMs %} {% for QM in cave.get_QMs %}
{% if QM.ticked_off_by %} {% if QM.ticked_off_by %}
<li><a href="{{QM}}">{{QM}}</a> {{QM.nearest_station_name}} :: {{QM.nearest_station_description}} <b>{{QM.cave}}</b></li> <li><a href="{{QM.get_absolute_url}}">{{QM}}</a> {{QM.nearest_station_name}} :: {{QM.nearest_station_description}} <b>{{QM.cave}}</b></li>
{% endif %} {% endif %}
{% endfor %} {% endfor %}
</ul> </ul>