summaryrefslogtreecommitdiffstats
path: root/templates/cave_entrances.html
diff options
context:
space:
mode:
authorexpo <expo@expobox.potato.hut>2012-08-06 12:19:48 +0200
committerexpo <expo@expobox.potato.hut>2012-08-06 12:19:48 +0200
commit44eb3c0caffc1fbe52d647f1344487d9776b3455 (patch)
tree5aa533129f32e710efebaa95b40a3542521df84f /templates/cave_entrances.html
parentc221b75afc8a08553909be9eafad480af9362054 (diff)
downloadtroggle-44eb3c0caffc1fbe52d647f1344487d9776b3455.tar.gz
troggle-44eb3c0caffc1fbe52d647f1344487d9776b3455.tar.bz2
troggle-44eb3c0caffc1fbe52d647f1344487d9776b3455.zip
Editing no longer changes files more than nesecary. Removed TinyMCE editing. /Sumbit/Submit
Diffstat (limited to 'templates/cave_entrances.html')
-rw-r--r--templates/cave_entrances.html15
1 files changed, 10 insertions, 5 deletions
diff --git a/templates/cave_entrances.html b/templates/cave_entrances.html
index e4e939d..1364acf 100644
--- a/templates/cave_entrances.html
+++ b/templates/cave_entrances.html
@@ -51,11 +51,16 @@
{% if ent.entrance.bearings %}
<dt>Bearings</dt><dd>{{ ent.entrance.bearings|safe }}</dd>
{% endif %}
-
- {{ ent.entrance.tag_station|safe }}
- {{ ent.entrance.exact_station|safe }}
- {{ ent.entrance.other_station|safe }}
- {{ ent.entrance.other_description|safe }}
+ {% if ent.entrance.exact_station %}
+ <dt>Exact Station</dt><dd>{{ ent.entrance.exact_station|safe }}</dd>
+ {% endif %}
+ {% if ent.entrance.other_station %}
+ <dt>Other Station</dt><dd>{{ ent.entrance.other_station|safe }}
+ {% if ent.entrance.other_description %}
+ - {{ ent.entrance.other_description|safe }}
+ {% endif %}
+ </dd>
+ {% endif %}
</dl>
</li>
{% endfor %}