summaryrefslogtreecommitdiffstats
path: root/templates/caveindex.html
blob: f4449055ca81bc6fd4de63afcf1cbd7bcf689445 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{% extends "cavebase.html" %}


{% block title %}Cave Index{% endblock %}

{% block content %}

<h1>Cave Index</h1>


<h3>Notable caves</h3>
<ul>
{% for cave in notablecaves %}
  <li> {{ cave.areacode }} <a href="/{{ cave.url }}">
      {% if cave.kataster_number %}
          {{ cave.kataster_number }} <em>{{cave.official_name|safe}}</em></a> 
          {% if cave.unofficial_number %}
              ({{cave.unofficial_number }})
          {% endif %}
      {% else %}
          {{cave.unofficial_number }} <em>{{cave.official_name|safe}}</em></a> 
      {% endif %}
{% endfor %}
</ul>

Red star <span style="color: red">*</span> against a name indicates that no survex file is explicitly associated with the cave<br />
Blue star <span style="color: blue">*</span> against a name indicates that no survex file is explicitly associated with the cave but it is marked as 'fully explored'<br />
Blue triangle <span style="color: #43C6DB">&#x25BC;</span> against a name indicates that the cave is 'pending' creation properly.<br />
Orange triangle <span style="color: orange">&#x25B2;</span> against a name indicates that the cave has no Entrance (and is not 'pending').<br />
Black triangle <span style="color: black">&#x25B2;</span> against a name indicates that the cave has an Entrance, but no entrances have valid located survey stations.

<h3>1623</h3>
<div style="column-count: 3;">
<table class="searchable">
{% for cave in caves1623 %}
  <tr><td> <a href="/{{ cave.url }}">
      {% if cave.kataster_number %}
          {{ cave.kataster_number }} <em>{{cave.official_name|safe}}</em></a> 
          {% if cave.unofficial_number %}
              ({{cave.unofficial_number }})
          {% endif %}
      {% else %}
          {{cave.unofficial_number }} <em>{{cave.official_name|safe}}</em></a> 
      {% endif %}
      {% if cave.filename %}
	{% if cave.entrances %}
		{% if cave.no_location %}<span title="the cave has an Entrance, but no entrances have located survey station" style="color: black">&#x25B2;</span>{% endif %}
	{% else %}<span title="the cave has no Entrance (and is not 'pending')" style="color: orange">&#x25B2;</span>
	{% endif %}
      {% else %}<span title="the cave is 'pending' creation properly" style="color: #43C6DB">&#x25BC;</span>
      {% endif %}
      {% if cave.survex_file %}{% else %}
          {% if cave.fully_explored %}
             	<span title="no survex file is explicitly associated with the cave but it is fully explored" style="color: blue">*</span>
          {% else %}
             	<span title="no survex file is explicitly associated with the cave" style="color: red">*</span>
          {% endif %}

      {% endif %}
  </td></tr>

{% endfor %}
</table>
</div>

    <p style="text-align:right">
    <a href="{% url "newcave" %}">New Cave</a><br>
        <a href="/noinfo/cave-number-index">Cave Number Index - kept updated</a>
    </p>

<h3>1626</h3>
<div style="column-count: 3;">
<table class="searchable">
    {% for cave in caves1626 %}
    <tr><td><a href="/{{ cave.url }}">{% if cave.kataster_number %}{{ cave.kataster_number }} <em>{{cave.official_name|safe}}</em></a> {% if cave.unofficial_number %}({{cave.unofficial_number }}){% endif %}{% else %}{{cave.unofficial_number }} <em>{{cave.official_name|safe}}</em></a> {% endif %}
      {% if cave.filename %}
	{% if cave.entrances %}
		{% if cave.no_location %}<span style="color: black">&#x25B2;</span>{% endif %}
	{% else %}<span style="color: orange">&#x25B2;</span>
	{% endif %}
	{% else %}<span style="color: #43C6DB">&#x25BC;</span>
	{% endif %}
      {% if cave.survex_file %}{% else %}
          {% if cave.fully_explored %}
             	<span title="no survex file is explicitly associated with the cave but it is fully explored" style="color: blue">*</span>
          {% else %}
             	<span title="no survex file is explicitly associated with the cave" style="color: red">*</span>
          {% endif %}

      {% endif %}  </td></tr>
  
  {% endfor %}
</table>
</div>

  <p style="text-align:right">
    <a href="{% url "newcave" %}">New Cave</a><br>
    <a href="/noinfo/cave-number-index">Cave Number Index - kept updated</a>
  </p>


<h3>1627</h3>
<div style="column-count: 3;">
<table class="searchable">
    {% for cave in caves1627 %}
    <tr><td><a href="/{{ cave.url }}">{% if cave.kataster_number %}{{ cave.kataster_number }} <em>{{cave.official_name|safe}}</em></a> {% if cave.unofficial_number %}({{cave.unofficial_number }}){% endif %}{% else %}{{cave.unofficial_number }} <em>{{cave.official_name|safe}}</em></a> {% endif %} 
      {% if cave.filename %}
		{% if cave.no_location %}<span style="color: black">&#x25B2;</span>{% endif %}
	{% if cave.entrances %}
	{% else %}<span style="color: orange">&#x25B2;</span>
	{% endif %}
      {% else %}<span style="color: #43C6DB">&#x25BC;</span>
      {% endif %}
      {% if cave.survex_file %}{% else %}
          {% if cave.fully_explored %}
             	<span title="no survex file is explicitly associated with the cave but it is fully explored" style="color: blue">*</span>
          {% else %}
             	<span title="no survex file is explicitly associated with the cave" style="color: red">*</span>
          {% endif %}

      {% endif %}  </td></tr>
 {% endfor %}
</table>
</div>

  <p style="text-align:right">
    <a href="{% url "newcave" %}">New Cave</a><br>
    <a href="/noinfo/cave-number-index">Cave Number Index - kept updated</a>
  </p>

<h3>1624</h3>
<div style="column-count: 3;">
<table class="searchable">
    {% for cave in caves1624 %}
    <tr><td><a href="/{{ cave.url }}">{% if cave.kataster_number %}{{ cave.kataster_number }} <em>{{cave.official_name|safe}}</em></a> {% if cave.unofficial_number %}({{cave.unofficial_number }}){% endif %}{% else %}{{cave.unofficial_number }} <em>{{cave.official_name|safe}}</em></a> {% endif %} 
      {% if cave.filename %}
		{% if cave.no_location %}<span  style="color: black">&#x25B2;</span>{% endif %}
	{% if cave.entrances %}
	{% else %}<span style="color: orange">&#x25B2;</span>
	{% endif %}
      {% else %}<span style="color: #43C6DB">&#x25BC;</span>
      {% endif %}
      {% if cave.survex_file %}{% else %}
          {% if cave.fully_explored %}
             	<span title="no survex file is explicitly associated with the cave but it is fully explored" style="color: blue">*</span>
          {% else %}
             	<span title="no survex file is explicitly associated with the cave" style="color: red">*</span>
          {% endif %}

      {% endif %}  </td></tr>
  
  {% endfor %}
</table>

</div>  
 
  <p style="text-align:right">
    <a href="{% url "newcave" %}">New Cave</a><br>
    <a href="/noinfo/cave-number-index">Cave Number Index - kept updated</a>
  </p>
{% endblock %}