diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-08-27 14:20:57 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-08-27 15:07:16 +0200 |
| commit | e7cd1e316b9f37e553ae52c830001cc4bc06428a (patch) | |
| tree | ae8465424ba1ca87f34a76ec04c25760d217fa97 /archaeological_finds/templates/ishtar/sheet_find.html | |
| parent | 55e02abfe37176a7dff42900794dc93f481da5bb (diff) | |
| download | Ishtar-e7cd1e316b9f37e553ae52c830001cc4bc06428a.tar.bz2 Ishtar-e7cd1e316b9f37e553ae52c830001cc4bc06428a.zip | |
✨ finds: change collection to m2m, add owner and ownership (#6082)
Diffstat (limited to 'archaeological_finds/templates/ishtar/sheet_find.html')
| -rw-r--r-- | archaeological_finds/templates/ishtar/sheet_find.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_find.html b/archaeological_finds/templates/ishtar/sheet_find.html index 62cae08fb..247e4c03b 100644 --- a/archaeological_finds/templates/ishtar/sheet_find.html +++ b/archaeological_finds/templates/ishtar/sheet_find.html @@ -212,6 +212,14 @@ </div> {% endif %} + {% if item.has_ownership_section %} + <h3>{% trans "Ownership" %}</h3> + <div class='row'> + {% field_flex _("Ownership status") item.ownership_status %} + {% field_flex _("Owner") item.owner %} + </div> + {% endif %} + {% if item.has_museum_section %} <h3>{% trans "Museum / legal status" %}</h3> <div class='row'> @@ -231,7 +239,7 @@ {% field_flex_detail_multiple _("Donors, testators or vendors") item.museum_donors %} {% field_flex_multiple_obj "Presence of inventory marking" item "museum_inventory_marking_presence" %} {% field_flex_multiple_obj "Type of marking" item "museum_marking_type" %} - {% field_flex "Collection" item.museum_collection %} + {% field_flex_multiple_obj _("Collections") item "museum_collections" %} {% field_flex_detail_multiple _("Former collection") item.museum_former_collections %} {% field_flex "Inventory entry year" item.museum_inventory_entry_year %} {% field_flex "Conformity with inventory" item.museum_inventory_conformity %} |
