diff --git a/core/views/caves.py b/core/views/caves.py index ae9cef7..0d8c3e9 100644 --- a/core/views/caves.py +++ b/core/views/caves.py @@ -686,10 +686,11 @@ def ent(request, cave_id, ent_letter): def cave_debug(request): ents = Entrance.objects.all().order_by('id') + caves = Cave.objects.all().order_by('id') return render( request, "cave_debug.html", - {"ents": ents}, + {"ents": ents, "caves": caves}, ) def caveslist(request): diff --git a/templates/cave_debug.html b/templates/cave_debug.html index ce598ea..fe6e4cd 100644 --- a/templates/cave_debug.html +++ b/templates/cave_debug.html @@ -5,14 +5,15 @@ {% block content %} -
These are Entrances read from the expoweb/entrance_data/*.html files. These are NOT the *entrance data points in the survex files. +
These are Entrances read from the expoweb/entrance_data/*.html files. +These are NOT the *entrance data points in the survex files.
entrance | ent slug | Best station | Location | -<Bearings | +Bearings |
---|
Cave | +slug | +underground_centre_line | +
---|---|---|
+ {{c}} + | ++ {{c.slug}} + | ++ {{c.underground_centre_line|safe}} + | +{% endif %} +{% endfor %} +