summaryrefslogtreecommitdiffstats
path: root/templates/cave.html
blob: 5f761b789e4b6d837b4dd8cea315e0c917dfc860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{% extends "cavebase.html" %}


{% block content %}
{% block contentheader %}
<table id="cavepage">
<tr>
    <th id="kat_no">
        {% if cave.kataster_number %}
            {{ cave.kataster_number|safe }}
            {% if cave.entrancelist %}
                - {{ cave.entrancelist|safe }}
            {% endif %}
            {% if cave.unofficial_number %}
                <br />({{ cave.unofficial_number|safe }})
            {% endif %}
        {% endif %}
    </th>
    <th id="name">
         {{ cave.official_name|safe }}
    </th>
    <th id="status">
         {{ cave.kataster_code|safe }}
    </th>
</tr>
</table>
{% block related %}
{% endblock %}{% endblock %}

<div id="tabs">
	<ul>
		<li><a href="/cave/description/{{cave.slug}}">Description</a></li>
		<li><a href="/cave/entrance/{{cave.slug}}">Entrances</a></li>
		<li><a href="/cave/logbook/{{cave.slug}}">Logbook</a></li>
		<li><a href="/cave/qms/{{cave.slug}}">QMs</a></li>
	</ul>
	<div id="qms">

	</div>
</div>


{% endblock %}