blob: 593e3d69a4615d23498fab9151a8d5abf895ba46 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
{% extends "base.html" %}
{% block title %}{{ cave.official_name|safe }} - {{ entranceletter|safe }}{% endblock %}
{% block content %}
<table id="cavepage">
<tr>
<th id="kat_no">
{% if cave.kataster_number %}
{{ cave.kataster_number|safe }}{{ letter|safe }}
{% if cave.unofficial_number %}
<br />({{ cave.unofficial_number|safe }})
{% endif %}
{% endif %}
</th>
<th id="name">
{% if entrance.name %}
{{ entrance.name|safe }}
{% else %}
Unnamed
{% endif %} - {{ cave.official_name|safe }}
</th>
<th id="status">
{{ cave.kataster_code|safe }}
</th>
</tr>
</table>
{% if entrance.entrance_description %}
<h2>Entrance Description</h2>
{{ entrance.entrance_description|safe }}
{% endif %}
{% if entrance.explorers %}
<h2>Explorers</h2>
{{ entrance.explorers|safe }}
{% endif %}
{% if entrance.map_description %}
<h2>Map</h2>
{{ entrance.map_description|safe }}
{% endif %}
{% if entrance.explorers %}
<h2>Entrance Description</h2>
{{ entrance.entrance_description|safe }}
{% endif %}
{% if entrance.location_description %}
<h2>Location Description</h2>
{{ entrance.location_description|safe }}
{% endif %}
{% if entrance.lastvisit %}
<h2>Last Visit Date</h2>
{{ entrance.llastvisit|safe }}
{% endif %}
{% if entrance.approach %}
<h2>Approach</h2>
{{ entrance.approach|safe }}
{% endif %}
{% if entrance.underground_description %}
<h2>Underground Description</h2>
{{ entrance.underground_description|safe }}
{% endif %}
{% if entrance.photo %}
<h2>Photo</h2>
{{ entrance.photo|safe }}
{% endif %}
{% if entrance.marking %}
<h2>Marking - {{ entrance.marking_val|safe }}</h2>
{% if entrance.marking_comment %}
{{ entrance.marking_comment|safe }}
{% endif %}
{% endif %}
{% if entrance.findability %}
<h2>Findability - {{ entrance.findability_val|safe }}</h2>
{% if entrance.findability_description %}
{{ entrance.findability_description|safe }}
{% endif %}
{% endif %}
{% if entrance.bearings %}
<h2>Bearings</h2>
{{ entrance.bearings|safe }}
{% endif %}
{% endblock %}
|