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>