2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2026-03-30 09:59:51 +01:00

Explorers field annotations in report pages

This commit is contained in:
2025-10-10 22:26:22 +03:00
parent 76854a84d7
commit 9806212395
2 changed files with 7 additions and 7 deletions

View File

@@ -237,9 +237,9 @@ to equate <var>p{{ ent.entrance.name|lower|safe }}</var> 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 %}
<h3>Explorers</h3>
<h3>Initially explored by</h3>
<p> {{ cave.explorers|safe }}<br />
<p>[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.]
<p>[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 <a href="/survexfile/{{cave.survex_file}}">the primary survex file</a>.]
{% endif %}
<div id='scene'></div>
{% endif %}

View File

@@ -29,10 +29,7 @@
<h2>Entrance Description</h2>
{{ entrance.entrance_description|safe }}
{% endif %}
{% if entrance.explorers %}
<h2>Explorers</h2>
{{ entrance.explorers|safe }}
{% endif %}
{% if entrance.map_description %}
<h2>Map</h2>
{{ entrance.map_description|safe }}
@@ -77,5 +74,8 @@
<h2>Bearings</h2>
{{ entrance.bearings|safe }}
{% endif %}
{% if entrance.explorers %}
<h3>Initially explored by</h3>
{{ entrance.explorers|safe }} <br />[This is probably outdated fossil data.]
{% endif %}
{% endblock %}