summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2022-11-09 13:38:25 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2022-12-12 12:23:19 +0100
commit8f8a453cf34441ce2a44d68a20837a52971d42a5 (patch)
treea680b0d0677f51a4e8dfae124e2c28c3946b9276
parent9ef20269cae4fbe415ae368b6fd9843a231fc305 (diff)
downloadIshtar-8f8a453cf34441ce2a44d68a20837a52971d42a5.tar.bz2
Ishtar-8f8a453cf34441ce2a44d68a20837a52971d42a5.zip
Form find: change dating fields order
-rw-r--r--archaeological_finds/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py
index 6b97e19b8..5fa648962 100644
--- a/archaeological_finds/forms.py
+++ b/archaeological_finds/forms.py
@@ -1231,10 +1231,10 @@ class DateForm(ManageOldType, forms.Form):
"period": Period,
}
period = forms.ChoiceField(label=_("Period"), choices=[])
+ dating_type = forms.ChoiceField(label=_("Dating type"), required=False, choices=[])
start_date = forms.IntegerField(label=_("Start date"), required=False)
end_date = forms.IntegerField(label=_("End date"), required=False)
quality = forms.ChoiceField(label=_("Quality"), required=False, choices=[])
- dating_type = forms.ChoiceField(label=_("Dating type"), required=False, choices=[])
precise_dating = forms.CharField(label=_("Precise dating"), required=False)
TYPES = [
FieldType("dating_type", DatingType),