forked from expo/troggle
Split up tags such that they use ajax
This commit is contained in:
12
templates/cave_entrances.html
Normal file
12
templates/cave_entrances.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user