2011-07-11 02:10:22 +01:00
{% extends "cavebase.html" %}
2021-04-02 20:41:42 +01:00
2011-07-11 02:10:22 +01:00
{% block title %}Cave Index{% endblock %}
{% block content %}
< h1 > Cave Index< / h1 >
2019-02-25 23:46:52 +00:00
2011-07-11 02:10:22 +01:00
< h3 > Notable caves< / h3 >
< ul >
{% for cave in notablecaves %}
2024-03-09 17:28:03 +00:00
< li > {{ cave.areacode }} < a href = "/{{ cave.url }}" >
2023-05-20 20:47:09 +01:00
{% if cave.kataster_number %}
2023-10-19 16:33:39 +01:00
{{ cave.kataster_number }} < em > {{cave.official_name|safe}}< / em > < / a >
2023-05-20 20:47:09 +01:00
{% if cave.unofficial_number %}
({{cave.unofficial_number }})
{% endif %}
{% else %}
2023-10-19 16:33:39 +01:00
{{cave.unofficial_number }} < em > {{cave.official_name|safe}}< / em > < / a >
2023-09-10 15:28:13 +01:00
{% endif %}
2011-07-11 02:10:22 +01:00
{% endfor %}
< / ul >
2024-07-02 11:15:34 +01:00
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 / >
2023-10-13 22:17:57 +01:00
Blue triangle < span style = "color: #43C6DB" > ▼ < / span > against a name indicates that the cave is 'pending' creation properly.< br / >
2023-10-06 15:01:48 +01:00
Orange triangle < span style = "color: orange" > ▲ < / span > against a name indicates that the cave has no Entrance (and is not 'pending').< br / >
2023-10-11 13:05:58 +01:00
Black triangle < span style = "color: black" > ▲ < / span > against a name indicates that the cave has an Entrance, but no entrances have valid located survey stations.
2023-10-06 12:57:41 +01:00
2023-05-20 20:47:09 +01:00
< h3 > 1623< / h3 >
2021-04-16 16:01:35 +01:00
< div style = "column-count: 3;" >
2019-02-25 20:58:32 +00:00
< table class = "searchable" >
2011-07-11 02:10:22 +01:00
{% for cave in caves1623 %}
2024-03-09 17:28:03 +00:00
< tr > < td > < a href = "/{{ cave.url }}" >
2022-06-24 19:28:31 +01:00
{% if cave.kataster_number %}
2023-10-19 16:33:39 +01:00
{{ cave.kataster_number }} < em > {{cave.official_name|safe}}< / em > < / a >
2022-06-24 19:28:31 +01:00
{% if cave.unofficial_number %}
({{cave.unofficial_number }})
{% endif %}
{% else %}
2023-10-19 16:33:39 +01:00
{{cave.unofficial_number }} < em > {{cave.official_name|safe}}< / em > < / a >
2023-10-06 12:57:41 +01:00
{% endif %}
2023-10-06 15:01:48 +01:00
{% if cave.filename %}
2023-10-07 17:41:25 +01:00
{% if cave.entrances %}
2023-10-07 22:15:16 +01:00
{% if cave.no_location %}< span title = "the cave has an Entrance, but no entrances have located survey station" style = "color: black" > ▲ < / span > {% endif %}
{% else %}< span title = "the cave has no Entrance (and is not 'pending')" style = "color: orange" > ▲ < / span >
2023-10-07 17:41:25 +01:00
{% endif %}
2023-11-07 00:12:57 +00:00
{% else %}< span title = "the cave is 'pending' creation properly" style = "color: #43C6DB" > ▼ < / span >
{% endif %}
2024-07-02 11:15:34 +01:00
{% 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 %}
2023-10-06 12:57:41 +01:00
< / td > < / tr >
2011-07-11 02:10:22 +01:00
{% endfor %}
2019-02-25 20:58:32 +00:00
< / table >
2021-04-16 16:01:35 +01:00
< / div >
2011-07-11 02:10:22 +01:00
2023-05-20 20:47:09 +01:00
< 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 >
2023-09-11 18:38:14 +01:00
< div style = "column-count: 3;" >
2023-05-20 20:47:09 +01:00
< table class = "searchable" >
{% for cave in caves1626 %}
2024-03-09 17:28:03 +00:00
< 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 %}
2023-10-06 15:01:48 +01:00
{% if cave.filename %}
2023-10-07 17:41:25 +01:00
{% if cave.entrances %}
{% if cave.no_location %}< span style = "color: black" > ▲ < / span > {% endif %}
{% else %}< span style = "color: orange" > ▲ < / span >
{% endif %}
2023-10-13 22:17:57 +01:00
{% else %}< span style = "color: #43C6DB" > ▼ < / span >
2023-10-06 15:01:48 +01:00
{% endif %}
2024-07-02 11:15:34 +01:00
{% 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 >
2023-05-20 20:47:09 +01:00
{% endfor %}
< / table >
< / div >
< p style = "text-align:right" >
< a href = "{% url " newcave " % } " > New Cave< / a > < br >
2020-08-02 23:54:14 +01:00
< a href = "/noinfo/cave-number-index" > Cave Number Index - kept updated< / a >
2023-05-20 20:47:09 +01:00
< / p >
2023-10-07 22:06:12 +01:00
2023-05-20 20:47:09 +01:00
< h3 > 1627< / h3 >
2023-09-11 18:38:14 +01:00
< div style = "column-count: 3;" >
2023-05-20 20:47:09 +01:00
< table class = "searchable" >
{% for cave in caves1627 %}
2024-03-09 17:28:03 +00:00
< 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 %}
2023-10-06 15:01:48 +01:00
{% if cave.filename %}
2023-10-07 17:41:25 +01:00
{% if cave.no_location %}< span style = "color: black" > ▲ < / span > {% endif %}
{% if cave.entrances %}
{% else %}< span style = "color: orange" > ▲ < / span >
2023-10-06 15:01:48 +01:00
{% endif %}
2023-10-13 22:17:57 +01:00
{% else %}< span style = "color: #43C6DB" > ▼ < / span >
2023-10-07 17:41:25 +01:00
{% endif %}
2024-07-02 11:15:34 +01:00
{% 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 >
2023-10-07 22:06:12 +01:00
{% 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 %}
2024-03-09 17:28:03 +00:00
< 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 %}
2023-10-07 22:06:12 +01:00
{% if cave.filename %}
2023-10-07 22:15:16 +01:00
{% if cave.no_location %}< span style = "color: black" > ▲ < / span > {% endif %}
2023-10-07 22:06:12 +01:00
{% if cave.entrances %}
{% else %}< span style = "color: orange" > ▲ < / span >
{% endif %}
2023-10-13 22:17:57 +01:00
{% else %}< span style = "color: #43C6DB" > ▼ < / span >
2023-10-07 22:06:12 +01:00
{% endif %}
2024-07-02 11:15:34 +01:00
{% 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 >
2023-05-20 20:47:09 +01:00
{% endfor %}
< / table >
2023-10-07 22:06:12 +01:00
< / div >
2023-05-20 20:47:09 +01:00
< 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 >
2011-07-11 02:10:22 +01:00
{% endblock %}