2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2026-02-08 11:39:49 +00:00

Black triangles on cave index

This commit is contained in:
2023-10-07 19:41:25 +03:00
parent 5f67af35f0
commit 7c0187c75b
3 changed files with 31 additions and 9 deletions

View File

@@ -26,7 +26,7 @@
Red star <span style="color: red">*</span> against a name indicates that no survex file is explicitly associated with the cave (but there might be a *fix somewhere)<br />
Blue triangle <span style="color: blue">&#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">&#x25BC;</span> against a name indicates that the cave has an Entrance, but no entrances have located survey stations.-->
Black triangle <span style="color: black">&#x25B2;</span> against a name indicates that the cave has an Entrance, but no entrances have located survey stations.
<h3>1623</h3>
<div style="column-count: 3;">
@@ -42,7 +42,10 @@ Orange triangle <span style="color: orange">&#x25B2;</span> against a name indic
{{cave.unofficial_number }} {{cave.official_name|safe}}</a>
{% endif %}
{% if cave.filename %}
{% if cave.entrances %}{% else %}<span style="color: orange">&#x25B2;</span>{% endif %}
{% 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: blue">&#x25BC;</span>
{% endif %}
{% if cave.survex_file %}{% else %}<span style="color: red">*</span>{% endif %}
@@ -63,7 +66,10 @@ Orange triangle <span style="color: orange">&#x25B2;</span> against a name indic
{% for cave in caves1626 %}
<tr><td><a href="{{ cave.url }}">{% if cave.kataster_number %}{{ cave.kataster_number }} {{cave.official_name|safe}}</a> {% if cave.unofficial_number %}({{cave.unofficial_number }}){% endif %}{% else %}{{cave.unofficial_number }} {{cave.official_name|safe}}</a> {% endif %}
{% if cave.filename %}
{% if cave.entrances %}{% else %}<span style="color: orange">&#x25B2;</span>{% endif %}
{% 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: blue">&#x25BC;</span>
{% endif %}
{% if cave.survex_file %}{% else %}<span style="color: red">*</span>{% endif %}
@@ -84,9 +90,12 @@ Orange triangle <span style="color: orange">&#x25B2;</span> against a name indic
{% for cave in caves1627 %}
<tr><td><a href="{{ cave.url }}">{% if cave.kataster_number %}{{ cave.kataster_number }} {{cave.official_name|safe}}</a> {% if cave.unofficial_number %}({{cave.unofficial_number }}){% endif %}{% else %}{{cave.unofficial_number }} {{cave.official_name|safe}}</a> {% endif %}
{% if cave.filename %}
{% if cave.entrances %}{% else %}<span style="color: orange">&#x25B2;</span>{% endif %}
{% else %}<span style="color: blue">&#x25BC;</span>
{% 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: blue">&#x25BC;</span>
{% endif %}
{% if cave.survex_file %}{% else %}<span style="color: red">*</span>{% endif %}
</td></tr>