diff --git a/templates/caveindex.html b/templates/caveindex.html
index 510e02d..e863f3d 100644
--- a/templates/caveindex.html
+++ b/templates/caveindex.html
@@ -24,8 +24,9 @@
 </ul>
 
 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 />
-Orange triangle <span style="color: orange">&#x25B2;</span> against a name indicates that the cave has no Entrance.<br />
-<!--Blue triangle <span style="color: blue">&#x25BC;</span> against a name indicates that the cave has an Entrance, but no entrances have located survey stations.-->
+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.-->
 
 <h3>1623</h3>
 <div style="column-count: 3;">
@@ -40,8 +41,11 @@ Orange triangle <span style="color: orange">&#x25B2;</span> against a name indic
       {% 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>
+	{% endif %}
       {% if cave.survex_file %}{% else %}<span style="color: red">*</span>{% endif %}
-      {% if cave.entrances %}{% else %}<span style="color: orange">&#x25B2;</span>{% endif %}
   </td></tr>
 
 {% endfor %}
@@ -58,8 +62,11 @@ Orange triangle <span style="color: orange">&#x25B2;</span> against a name indic
 <table class="searchable">
     {% 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 %}
+	{% else %}<span style="color: blue">&#x25BC;</span>
+	{% endif %}
       {% if cave.survex_file %}{% else %}<span style="color: red">*</span>{% endif %}
-      {% if cave.entrances %}{% else %}<span style="color: orange">&#x25B2;</span>{% endif %}
   </td></tr>
   
   {% endfor %}
@@ -76,8 +83,11 @@ Orange triangle <span style="color: orange">&#x25B2;</span> against a name indic
 <table class="searchable">
     {% 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>
+	{% endif %}
       {% if cave.survex_file %}{% else %}<span style="color: red">*</span>{% endif %}
-      {% if cave.entrances %}{% else %}<span style="color: orange">&#x25B2;</span>{% endif %}
   </td></tr>
   
   {% endfor %}