diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-11-03 14:33:55 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-08 09:58:49 +0200 |
commit | 52c3297e42a77c322539b324fd9a870a6b0e59e7 (patch) | |
tree | f93e11c680c46c8883b516b32f60d87fb2eaec05 /archaeological_context_records | |
parent | 14a0da5cb7a794008227cc5c35beadc5f8060b93 (diff) | |
download | Ishtar-52c3297e42a77c322539b324fd9a870a6b0e59e7.tar.bz2 Ishtar-52c3297e42a77c322539b324fd9a870a6b0e59e7.zip |
Context record: change field order
Diffstat (limited to 'archaeological_context_records')
-rw-r--r-- | archaeological_context_records/forms.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archaeological_context_records/forms.py b/archaeological_context_records/forms.py index 157da64e1..c11afd1da 100644 --- a/archaeological_context_records/forms.py +++ b/archaeological_context_records/forms.py @@ -299,6 +299,7 @@ class RecordFormGeneral(CustomForm, ManageOldType): description = forms.CharField( label=_("Description"), widget=forms.Textarea, required=False ) + filling = forms.CharField(label=_("Filling"), widget=forms.Textarea, required=False) comment = forms.CharField( label=_("General comment"), widget=forms.Textarea, required=False ) @@ -525,10 +526,6 @@ class RecordFormInterpretation(CustomForm, ManageOldType, forms.Form): "activity": models.ActivityType, "identification": models.IdentificationType, } - datings_comment = forms.CharField( - label=_("Comments on dating"), required=False, widget=forms.Textarea - ) - filling = forms.CharField(label=_("Filling"), widget=forms.Textarea, required=False) interpretation = forms.CharField( label=_("Interpretation"), widget=forms.Textarea, required=False ) @@ -540,6 +537,9 @@ class RecordFormInterpretation(CustomForm, ManageOldType, forms.Form): taq_estimated = forms.IntegerField(label=_("Estimated TAQ"), required=False) tpq = forms.IntegerField(label=_("TPQ"), required=False) tpq_estimated = forms.IntegerField(label=_("Estimated TPQ"), required=False) + datings_comment = forms.CharField( + label=_("Comments on dating"), required=False, widget=forms.Textarea + ) TYPES = [ FieldType("activity", models.ActivityType), |