diff --git a/core/views/caves.py b/core/views/caves.py
index 67d0b2319..dcd199d3e 100644
--- a/core/views/caves.py
+++ b/core/views/caves.py
@@ -205,7 +205,7 @@ def getnotablecaves():
print(notablecaves)
return notablecaves
-def caveindex(request):
+def caves_recent(request):
caves1623 = list(Cave.objects.filter(areacode="1623"))
caves1626 = list(Cave.objects.filter(areacode="1626"))
caves1623.sort(key=caveKey)
diff --git a/templates/caveindex.html b/templates/caveindex.html
index 58b003c7e..44411cc12 100644
--- a/templates/caveindex.html
+++ b/templates/caveindex.html
@@ -22,11 +22,11 @@
{% include 'cave_red_star.html' %}
-See All Caves for all the caves in areas 1623, 1626, 1624, 1627
+See All Caves for all the caves in areas 1623, 1626, 1624, 1627
New Cave
- Cave Number Index - kept updated
+
@@ -56,6 +56,6 @@ See All Caves for all the caves in areas 1623,
New Cave
- Cave Number Index - kept updated
+
{% endblock %}
diff --git a/templates/cavesallindex.html b/templates/cavesallindex.html
index c8f045032..228e1ed8f 100644
--- a/templates/cavesallindex.html
+++ b/templates/cavesallindex.html
@@ -22,7 +22,7 @@
{% include 'cave_red_star.html' %}
-Go to Recent Caves for a shorter list of recent caves.
+
Go to Recent Caves for a shorter list of recent caves.
New Cave
diff --git a/templates/menu.html b/templates/menu.html
index 45bb8a070..a54d3574d 100644
--- a/templates/menu.html
+++ b/templates/menu.html
@@ -22,7 +22,7 @@
Make Logbook Entry
-Caves
+Caves
{% if parent_caves %}
{% for parent_cave in parent_caves %}
diff --git a/templates/troggletoolbar.html b/templates/troggletoolbar.html
index 985452027..bfd3bcefe 100644
--- a/templates/troggletoolbar.html
+++ b/templates/troggletoolbar.html
@@ -23,7 +23,7 @@
{% endif %}
Logbook Entry |
-
Caves |
+
Caves |
QMs |
Survex |
All Survex |
diff --git a/urls.py b/urls.py
index 3a4616ba6..bf7ba710e 100644
--- a/urls.py
+++ b/urls.py
@@ -10,7 +10,7 @@ from troggle.core.views.auth import expologin, expologout
from troggle.core.views.caves import (
cave3d,
cave_debug,
- caveindex,
+ caves_recent,
cavesall,
cavepage,
caveQMs,
@@ -152,13 +152,13 @@ trogglepatterns = [
re_path(r'^(.*)_edit_edit$', spider, name="spider"), # web spider. Intercept and manage it.
- re_path(r'^caves$', caveindex, name="caveindex"),
- re_path(r'^indxal.htm$', caveindex, name="caveindex"), # ~420 hrefs to this url in expoweb files
+ re_path(r'^caves$', cavesall, name="cavesall"),
+ re_path(r'^indxal.htm$', cavesall, name="cavesall"), # ~420 hrefs to this url in expoweb files
re_path(r'^people/?$', notablepersons, name="notablepersons"),
path('people_ids', people_ids, name="people_ids"),
path('folk_export', folk_export, name="folk_export"),
path('caveslist', caveslist, name="caveslist"),
- path('cavesall', cavesall, name="cavesall"),
+ path('caves_recent', caves_recent, name="caves_recent"),
path('entrances', entranceindex, name="entranceindex"),
path('enttags', entrancetags, name="entrancetags"),