diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-02-12 11:21:56 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-02-19 14:45:57 +0100 |
commit | 17d286b114f003c4dbf7865d668ab41b63bcec4f (patch) | |
tree | 64147de58a77abb71409fb5b1e71a61b9405512c /archaeological_finds/templates | |
parent | 7313642f0ebcdfc83cc1d28906e618489594e8a9 (diff) | |
download | Ishtar-17d286b114f003c4dbf7865d668ab41b63bcec4f.tar.bz2 Ishtar-17d286b114f003c4dbf7865d668ab41b63bcec4f.zip |
✨ exhibtion: add description field - basket sheet: display associated exhibitions
Diffstat (limited to 'archaeological_finds/templates')
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_exhibition.html | 1 | ||||
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_findbasket.html | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_exhibition.html b/archaeological_finds/templates/ishtar/sheet_exhibition.html index 71cad264a..820391a9e 100644 --- a/archaeological_finds/templates/ishtar/sheet_exhibition.html +++ b/archaeological_finds/templates/ishtar/sheet_exhibition.html @@ -50,6 +50,7 @@ {% field_flex _("Type") item.exhibition_type %} {% field_flex _("Year") item.year %} {% field_flex_detail _("Responsible") item.in_charge %} + {% field_flex_full "Description" item.description "<pre>" "</pre>" %} {% field_flex_full "Comment" item.comment "<pre>" "</pre>" %} {% include "ishtar/blocks/sheet_json.html" %} </div> diff --git a/archaeological_finds/templates/ishtar/sheet_findbasket.html b/archaeological_finds/templates/ishtar/sheet_findbasket.html index 33b685abf..209c73862 100644 --- a/archaeological_finds/templates/ishtar/sheet_findbasket.html +++ b/archaeological_finds/templates/ishtar/sheet_findbasket.html @@ -17,6 +17,7 @@ {% field_flex "Comment" item.comment %} {% field_flex_multiple_full "Shared (read) with" item.shared_with %} {% field_flex_multiple_full "Shared (read/edit) with" item.shared_write_with %} + {% field_flex_detail_multiple_full _("Associated exhibitions") item.exhibitions %} {% field_flex_detail_multiple_full _("Associated treatments") item.treatments %} {% trans "Associated treatment files" as treatment_label %} {% field_flex_detail_multiple_full treatment_label item.treatment_files %} |