troggle-unchained/templates/entrance.html

82 lines
2.2 KiB
HTML
Raw Normal View History

2011-07-11 02:10:22 +01:00
{% extends "base.html" %}
2021-04-30 22:44:03 +01:00
{% block title %}{{ cave.official_name|safe }} - {{ entrance_letter|safe }}{% endblock %}
2011-07-11 02:10:22 +01:00
{% block content %}
<table id="cavepage">
<tr>
<th id="kat_no">
{% if cave.kataster_number %}
2021-04-30 22:44:03 +01:00
{{ cave.kataster_number|safe }}{{ letter|safe }}
2011-07-11 02:10:22 +01:00
{% if cave.unofficial_number %}
2021-04-30 22:44:03 +01:00
<br />({{ cave.unofficial_number|safe }})
2011-07-11 02:10:22 +01:00
{% endif %}
{% endif %}
</th>
<th id="name">
{% if entrance.name %}
2021-04-30 22:44:03 +01:00
{{ entrance.name|safe }}
2011-07-11 02:10:22 +01:00
{% else %}
Unnamed
2021-04-30 22:44:03 +01:00
{% endif %} - {{ cave.official_name|safe }}
2011-07-11 02:10:22 +01:00
</th>
<th id="status">
2021-04-30 22:44:03 +01:00
{{ cave.kataster_code|safe }}
2011-07-11 02:10:22 +01:00
</th>
</tr>
</table>
{% if entrance.entrance_description %}
<h2>Entrance Description</h2>
2021-04-30 22:44:03 +01:00
{{ entrance.entrance_description|safe }}
2011-07-11 02:10:22 +01:00
{% endif %}
{% if entrance.explorers %}
<h2>Explorers</h2>
2021-04-30 22:44:03 +01:00
{{ entrance.explorers|safe }}
2011-07-11 02:10:22 +01:00
{% endif %}
{% if entrance.map_description %}
<h2>Map</h2>
2021-04-30 22:44:03 +01:00
{{ entrance.map_description|safe }}
2011-07-11 02:10:22 +01:00
{% endif %}
{% if entrance.explorers %}
<h2>Entrance Description</h2>
2021-04-30 22:44:03 +01:00
{{ entrance.entrance_description|safe }}
2011-07-11 02:10:22 +01:00
{% endif %}
{% if entrance.location_description %}
<h2>Location Description</h2>
2021-04-30 22:44:03 +01:00
{{ entrance.location_description|safe }}
2011-07-11 02:10:22 +01:00
{% endif %}
{% if entrance.lastvisit %}
<h2>Last Visit Date</h2>
{{ entrance.llastvisit|safe }}
{% endif %}
2011-07-11 02:10:22 +01:00
{% if entrance.approach %}
<h2>Approach</h2>
2021-04-30 22:44:03 +01:00
{{ entrance.approach|safe }}
2011-07-11 02:10:22 +01:00
{% endif %}
{% if entrance.underground_description %}
<h2>Underground Description</h2>
2021-04-30 22:44:03 +01:00
{{ entrance.underground_description|safe }}
2011-07-11 02:10:22 +01:00
{% endif %}
{% if entrance.photo %}
<h2>Photo</h2>
2021-04-30 22:44:03 +01:00
{{ entrance.photo|safe }}
2011-07-11 02:10:22 +01:00
{% endif %}
{% if entrance.marking %}
2021-04-30 22:44:03 +01:00
<h2>Marking - {{ entrance.marking_val|safe }}</h2>
2011-07-11 02:10:22 +01:00
{% if entrance.marking_comment %}
2021-04-30 22:44:03 +01:00
{{ entrance.marking_comment|safe }}
2011-07-11 02:10:22 +01:00
{% endif %}
{% endif %}
{% if entrance.findability %}
2021-04-30 22:44:03 +01:00
<h2>Findability - {{ entrance.findability_val|safe }}</h2>
2011-07-11 02:10:22 +01:00
{% if entrance.findability_description %}
2021-04-30 22:44:03 +01:00
{{ entrance.findability_description|safe }}
2011-07-11 02:10:22 +01:00
{% endif %}
{% endif %}
{% if entrance.bearings %}
<h2>Bearings</h2>
2021-04-30 22:44:03 +01:00
{{ entrance.bearings|safe }}
2011-07-11 02:10:22 +01:00
{% endif %}
{% endblock %}