diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/caveindex.html | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/templates/caveindex.html b/templates/caveindex.html index e863f3d..4c2fb52 100644 --- a/templates/caveindex.html +++ b/templates/caveindex.html @@ -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">▼</span> against a name indicates that the cave is 'pending' creation properly.<br /> Orange triangle <span style="color: orange">▲</span> against a name indicates that the cave has no Entrance (and is not 'pending').<br /> -<!-- Black triangle <span style="color: black">▼</span> against a name indicates that the cave has an Entrance, but no entrances have located survey stations.--> +Black triangle <span style="color: black">▲</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">▲</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">▲</span>{% endif %} + {% if cave.entrances %} + {% if cave.no_location %}<span style="color: black">▲</span>{% endif %} + {% else %}<span style="color: orange">▲</span> + {% endif %} {% else %}<span style="color: blue">▼</span> {% endif %} {% if cave.survex_file %}{% else %}<span style="color: red">*</span>{% endif %} @@ -63,7 +66,10 @@ Orange triangle <span style="color: orange">▲</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">▲</span>{% endif %} + {% if cave.entrances %} + {% if cave.no_location %}<span style="color: black">▲</span>{% endif %} + {% else %}<span style="color: orange">▲</span> + {% endif %} {% else %}<span style="color: blue">▼</span> {% endif %} {% if cave.survex_file %}{% else %}<span style="color: red">*</span>{% endif %} @@ -84,9 +90,12 @@ Orange triangle <span style="color: orange">▲</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">▲</span>{% endif %} - {% else %}<span style="color: blue">▼</span> + {% if cave.no_location %}<span style="color: black">▲</span>{% endif %} + {% if cave.entrances %} + {% else %}<span style="color: orange">▲</span> {% endif %} + {% else %}<span style="color: blue">▼</span> + {% endif %} {% if cave.survex_file %}{% else %}<span style="color: red">*</span>{% endif %} </td></tr> |