summaryrefslogtreecommitdiffstats
path: root/templates/cave_uground_description.html
diff options
context:
space:
mode:
authorMartin Green <martin.speleo@gmail.com>2011-07-11 00:50:07 +0100
committerMartin Green <martin.speleo@gmail.com>2011-07-11 00:50:07 +0100
commit5cbfa6d8b1c4bd8c98832b7ad4c203113c254ad3 (patch)
tree7e4ed102872e4579089480144c75b61481792b67 /templates/cave_uground_description.html
parent861daee66feb985ccfb9271c211dc1a27263fbf4 (diff)
downloadtroggle-5cbfa6d8b1c4bd8c98832b7ad4c203113c254ad3.tar.gz
troggle-5cbfa6d8b1c4bd8c98832b7ad4c203113c254ad3.tar.bz2
troggle-5cbfa6d8b1c4bd8c98832b7ad4c203113c254ad3.zip
Split up tags such that they use ajax
Diffstat (limited to 'templates/cave_uground_description.html')
-rw-r--r--templates/cave_uground_description.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/templates/cave_uground_description.html b/templates/cave_uground_description.html
new file mode 100644
index 0000000..66cc62c
--- /dev/null
+++ b/templates/cave_uground_description.html
@@ -0,0 +1,36 @@
+ <p>{% if cave.explorers %}
+ <h2>Explorers</h2>
+ {{ cave.explorers|safe }}
+{% endif %}
+{% if cave.underground_description %}
+ <h2>Underground Description</h2>
+ {{ cave.underground_description|safe }}
+{% endif %}
+{% if cave.equipment %}
+ <h2>Equipment</h2>
+ {{ cave.equipment|safe }}
+{% endif %}
+{% if cave.references %}
+ <h2>References</h2>
+ {{ cave.references|safe }}
+{% endif %}
+{% if cave.survey %}
+ <h2>Survey</h2>
+ {{ cave.survey|safe }}
+{% endif %}
+{% if cave.kataster_status %}
+ <h2>Kataster_status</h2>
+ {{ cave.kataster_status|safe }}
+{% endif %}
+{% if cave.underground_centre_line %}
+ <h2>Underground Centre Line</h2>
+ {{ cave.underground_centre_line|safe }}
+{% endif %}
+{% if cave.survex_file %}
+ <h2>Survex File</h2>
+ {{ cave.survex_file|safe }}
+{% endif %}
+{% if cave.notes %}
+ <h2>Notes</h2>
+ {{ cave.notes|safe }}
+{% endif %}</p>