diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-06-13 17:11:42 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-06-13 17:11:42 +0200 |
commit | fe0d3dab9d0123f5e92b61daf7b270a20bd25333 (patch) | |
tree | 44b8c942a488425f460e24ef07c2622abdfa56b1 /archaeological_context_records/templates | |
parent | 4c193e36b64c2397123cf288d21a801059211606 (diff) | |
download | Ishtar-fe0d3dab9d0123f5e92b61daf7b270a20bd25333.tar.bz2 Ishtar-fe0d3dab9d0123f5e92b61daf7b270a20bd25333.zip |
🐛 QA context record forms: fix parcel field (refs #6353)
Diffstat (limited to 'archaeological_context_records/templates')
-rw-r--r-- | archaeological_context_records/templates/ishtar/sheet_contextrecord.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_context_records/templates/ishtar/sheet_contextrecord.html b/archaeological_context_records/templates/ishtar/sheet_contextrecord.html index ff2877176..6776c17b8 100644 --- a/archaeological_context_records/templates/ishtar/sheet_contextrecord.html +++ b/archaeological_context_records/templates/ishtar/sheet_contextrecord.html @@ -125,7 +125,7 @@ <p class="window-refs" title="{% trans 'Identifier' %}"> <strong>{{ item.cached_label }}</strong></p> - <p class='window-refs' title="{% trans 'Parcel' %}">{{ item.parcel.short_label }}</p> + <p class='window-refs' title="{% trans 'Parcel' %}">{{ item.parcel.town }} | {{ item.parcel.short_label }}</p> {% if item.label != item.external_id %} <p class="window-refs">{{ item.label|default:"" }}</p>{% endif %} {% include "ishtar/blocks/sheet_external_id.html" %} |