diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-02-22 16:06:46 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-02-22 18:32:39 +0100 |
commit | 6ca8108a6c1c40782d842e0859eed462fc68224d (patch) | |
tree | 8705336c599478000d27250dad19faf1e4e84252 | |
parent | fd34a3a813a2c980b3b029c456c8ff7c2579368d (diff) | |
download | Ishtar-6ca8108a6c1c40782d842e0859eed462fc68224d.tar.bz2 Ishtar-6ca8108a6c1c40782d842e0859eed462fc68224d.zip |
🩹 find forms move some fields
-rw-r--r-- | archaeological_finds/forms.py | 2 | ||||
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_museum_find.html | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index f7bd338a7..9701c4121 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -1548,7 +1548,6 @@ class FindSelect(GeoItemSelect, PeriodSelect): base_finds__excavation_id = forms.CharField(label=_("Excavation ID")) seal_number = forms.CharField(label=_("Seal number")) laboratory_id = forms.CharField(label=_("Laboratory ID")) - mark = forms.CharField(label=_("Marking details")) base_finds__cache_short_id = forms.CharField(label=_("Base find - Short ID")) base_finds__cache_complete_id = forms.CharField(label=_("Base find - Complete ID")) @@ -1861,6 +1860,7 @@ class FindSelect(GeoItemSelect, PeriodSelect): museum_marking_type = forms.ChoiceField( label=_("Museum - Type of marking"), choices=[] ) + mark = forms.CharField(label=_("Marking details")) museum_collection = forms.ChoiceField( label=_("Museum - Collection"), choices=[] ) diff --git a/archaeological_finds/templates/ishtar/sheet_museum_find.html b/archaeological_finds/templates/ishtar/sheet_museum_find.html index 54463b90f..56672e007 100644 --- a/archaeological_finds/templates/ishtar/sheet_museum_find.html +++ b/archaeological_finds/templates/ishtar/sheet_museum_find.html @@ -113,7 +113,6 @@ {% field_flex "Laboratory ID" item.laboratory_id %} {% field_flex "Seal number" item.seal_number %} {# no index admin #} - {% field_flex_full "Mark" item.mark "<pre>" "</pre>" %} </div> <h3>{% trans "Description" %}</h3> |