From 98062123954063cdd9ed8e5565ec9a44f57cdf0c Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Fri, 10 Oct 2025 22:26:22 +0300 Subject: [PATCH] Explorers field annotations in report pages --- templates/cave.html | 4 ++-- templates/entrance.html | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/templates/cave.html b/templates/cave.html index 1ae253efc..3a13ffe39 100644 --- a/templates/cave.html +++ b/templates/cave.html @@ -237,9 +237,9 @@ to equate p{{ ent.entrance.name|lower|safe }} to the actual survey st cave survex path '{{ cave.areacode }}/{% if cave.kataster_number %}{{cave.kataster_number}}{% else %}{{cave.unofficial_number}}{% endif %}/' {% if cave.explorers %} -

Explorers

+

Initially explored by

{{ cave.explorers|safe }}
-

[This is a fossil: it used to show whether the cave was explored by CUCC/expo or by another group, but that information is now available in the survex files recording the surveying.] +

[This is a fossil: it used to show whether the cave was explored by CUCC/expo or by another group, but that information is now available in the survex files recording the surveying, see the primary survex file.] {% endif %}

{% endif %} diff --git a/templates/entrance.html b/templates/entrance.html index 593e3d69a..87946112d 100644 --- a/templates/entrance.html +++ b/templates/entrance.html @@ -29,10 +29,7 @@

Entrance Description

{{ entrance.entrance_description|safe }} {% endif %} -{% if entrance.explorers %} -

Explorers

- {{ entrance.explorers|safe }} -{% endif %} + {% if entrance.map_description %}

Map

{{ entrance.map_description|safe }} @@ -77,5 +74,8 @@

Bearings

{{ entrance.bearings|safe }} {% endif %} - +{% if entrance.explorers %} +

Initially explored by

+ {{ entrance.explorers|safe }}
[This is probably outdated fossil data.] +{% endif %} {% endblock %}