diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-02-22 16:06:46 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-16 16:42:32 +0200 |
commit | b46f56274b469da5c1ee154e29552ef1cbeacaf8 (patch) | |
tree | 4bd1070b86fa9314fc5f98e932f403ebfd7a2e3b /archaeological_finds/forms.py | |
parent | cc0f75b0c4780a6443d827c5409e4f333625d5d6 (diff) | |
download | Ishtar-b46f56274b469da5c1ee154e29552ef1cbeacaf8.tar.bz2 Ishtar-b46f56274b469da5c1ee154e29552ef1cbeacaf8.zip |
🩹 find forms move some fields
Diffstat (limited to 'archaeological_finds/forms.py')
-rw-r--r-- | archaeological_finds/forms.py | 2 |
1 files changed, 1 insertions, 1 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=[] ) |