mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 23:31:52 +00:00
13 lines
367 B
HTML
13 lines
367 B
HTML
<div id="entrances">
|
|
<p>{% if cave.entrances %}
|
|
<h2>Entrances</h2>
|
|
{% for ent in cave.entrances %}
|
|
<a href = "./{{ ent.entrance_letter|safe }}">{{ ent.entrance_letter|safe }}</a>
|
|
{% if ent.entrance.marking %}
|
|
Marking: {{ ent.entrance.marking_val|safe }}
|
|
{% endif %}
|
|
<br>
|
|
{% endfor %}
|
|
{% endif %}</p>
|
|
</div>
|