summaryrefslogtreecommitdiff
path: root/archaeological_finds/forms.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2025-12-01 18:28:17 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2025-12-01 18:28:17 +0100
commita760b89ec7000aec46db6a7263f736f3020707c2 (patch)
tree8f39baf2f1cfaff5e928892426c6e93f1350f539 /archaeological_finds/forms.py
parent808c3c28ea57adeb5f864e1204f1f33e0fda4dd6 (diff)
downloadIshtar-a760b89ec7000aec46db6a7263f736f3020707c2.tar.bz2
Ishtar-a760b89ec7000aec46db6a7263f736f3020707c2.zip
🐛 fix precise datings label (refs #6500)
Diffstat (limited to 'archaeological_finds/forms.py')
-rw-r--r--archaeological_finds/forms.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py
index 54545f1f3..d4454f63e 100644
--- a/archaeological_finds/forms.py
+++ b/archaeological_finds/forms.py
@@ -521,7 +521,7 @@ class BasicFindForm(MuseumForm, CustomForm, ManageOldType):
required=False,
)
dating_comment = forms.CharField(
- label=_("Comment on dating"), required=False, widget=forms.Textarea
+ label=_("Comment on datings"), required=False, widget=forms.Textarea
)
HEADERS["length"] = FormHeader(_("Dimensions"))
@@ -828,7 +828,7 @@ class ResultingFindForm(CustomForm, ManageOldType):
label=_("Comment"), required=False, widget=forms.Textarea
)
resulting_dating_comment = forms.CharField(
- label=_("Comment on dating"), required=False, widget=forms.Textarea
+ label=_("Comment on datings"), required=False, widget=forms.Textarea
)
HEADERS["resulting_length"] = FormHeader(_("Dimensions"))
@@ -1174,7 +1174,7 @@ class QAFindFormMulti(MuseumForm, QAForm):
required=False
)
qa_dating_comment = forms.CharField(
- label=_("Comment on dating"), required=False, widget=forms.Textarea
+ label=_("Comment on datings"), required=False, widget=forms.Textarea
)
qa_conservatory_comment = forms.CharField(
@@ -1892,7 +1892,7 @@ class FindSelect(MuseumForm, GeoItemSelect, PeriodSelect):
cultural_attributions = forms.ChoiceField(
label=_("Cultural attribution"), choices=[], required=False
)
- dating_comment = forms.CharField(label=_("Comment on dating"))
+ dating_comment = forms.CharField(label=_("Comment on datings"))
length = FloatField(label=_("Length (cm)"), widget=widgets.CentimeterMeterWidget)
width = FloatField(label=_("Width (cm)"), widget=widgets.CentimeterMeterWidget)