diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-01-20 17:08:54 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-01-20 17:08:54 +0100 |
commit | fe446a41c3ff945c94314bf64b5287bf4c3397d3 (patch) | |
tree | 506ba84eae7db7612285aad8d50118aba0d15bb1 /archaeological_finds | |
parent | a80eeaa93696c10d1f5c2b224fbdb1251b3315aa (diff) | |
download | Ishtar-fe446a41c3ff945c94314bf64b5287bf4c3397d3.tar.bz2 Ishtar-fe446a41c3ff945c94314bf64b5287bf4c3397d3.zip |
PDF export: fix new line on <pre> blocks
Diffstat (limited to 'archaeological_finds')
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_find.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_find.html b/archaeological_finds/templates/ishtar/sheet_find.html index b4954b7e6..d72d26b12 100644 --- a/archaeological_finds/templates/ishtar/sheet_find.html +++ b/archaeological_finds/templates/ishtar/sheet_find.html @@ -543,10 +543,11 @@ {% if not is_external and display_geo %} <div class="tab-pane fade" id="{{window_id}}-geodata" role="tabpanel" aria-labelledby="{{window_id}}-geodata-tab"> + <h3>{% trans "Geographic data" %}</h3> {% for base_find in item.base_finds.all %} {% with geo_item=base_find %} - <h3>{% if base_find.complete_identifier %}{{ base_find.complete_identifier }}{% else %}{{base_find.short_id}}{% endif %}</h3> + <h4>{% if base_find.complete_identifier %}{{ base_find.complete_identifier }}{% else %}{{base_find.short_id}}{% endif %}</h4> {% with current_geolabel=base_find %} {% include "ishtar/blocks/sheet_geographic.html" %} {% endwith %} {% endwith %} |