diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/cave.html | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/templates/cave.html b/templates/cave.html index 5df238c..6e0f4ff 100644 --- a/templates/cave.html +++ b/templates/cave.html @@ -70,12 +70,8 @@ <div id="Description"> {% comment %} The 'cave' object has text field, not forign-key fields, so we cant dereference to get info on the survex file {% endcomment %} -<p>{% if cave.explorers %} - <h2>Explorers</h2> - {{ cave.explorers|safe }} -{% endif %} {% if cave.survey %} - <h2>Survey</h2> + <h2>Surveys and Rigging Guides</h2> {{ cave.survey|safe }} {% endif %} {% if cave.underground_description %} @@ -86,19 +82,24 @@ <h2>Equipment</h2> {{ cave.equipment|safe }} {% endif %} -{% if cave.references %} - <h2>References</h2> - {{ cave.references|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.explorers %} + <h2>Explorers</h2> + {{ cave.explorers|safe }} +{% endif %} +{% if cave.references %} + <h2>References</h2> + {{ cave.references|safe }} +{% endif %} {% if cave.get_QMs %} <h2>QMs</h2> <a href="{% url 'caveQMs' cave_id|safe %}">QM page for {{ cave_id|safe }}</a> @@ -111,7 +112,7 @@ {% if cave.notes %} <h2>Notes</h2> {{ cave.notes|safe }} -{% endif %}</p> +{% endif %} </div> <div id="entrances"> |