diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-04-13 15:49:48 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-04-13 15:49:48 +0200 |
commit | aa9532ecbc2fafb8596075d77b506110efcc00ee (patch) | |
tree | ad372e7902adb863afe7abe85d3d7aa2c269d4e7 /archaeological_operations/templates | |
parent | 7a1c527970f916beec32c796c3c7fbdf3a4931bc (diff) | |
download | Ishtar-aa9532ecbc2fafb8596075d77b506110efcc00ee.tar.bz2 Ishtar-aa9532ecbc2fafb8596075d77b506110efcc00ee.zip |
Subaquatic module: add missing fields
Diffstat (limited to 'archaeological_operations/templates')
-rw-r--r-- | archaeological_operations/templates/ishtar/sheet_site.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archaeological_operations/templates/ishtar/sheet_site.html b/archaeological_operations/templates/ishtar/sheet_site.html index c42cf4f88..d6360f965 100644 --- a/archaeological_operations/templates/ishtar/sheet_site.html +++ b/archaeological_operations/templates/ishtar/sheet_site.html @@ -51,12 +51,14 @@ </div> {% endif %} -{% if item.oceanographic_service_localisation or item.shipwreck_code or item.sinking_date %} +{% if item.oceanographic_service_localisation or item.shipwreck_code or item.sinking_date or item.discovery_area or item.shipwreck_name %} <h3>{% trans "Underwater"%}</h3> <div class="row"> + {% field_flex "Shipwreck name" item.shipwreck_name %} {% field_flex "Shipwreck code" item.shipwreck_code %} {% field_flex "Sinking date" item.sinking_date %} + {% field_flex_full "Discovery area" item.discovery_area "<pre>" "</pre>" %} {% field_flex_full "Oceanographic service localisation" item.oceanographic_service_localisation "<pre>" "</pre>" %} </div> {% endif %} |