diff options
Diffstat (limited to 'archaeological_context_records/forms.py')
-rw-r--r-- | archaeological_context_records/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_context_records/forms.py b/archaeological_context_records/forms.py index 545bcb3c4..380f62198 100644 --- a/archaeological_context_records/forms.py +++ b/archaeological_context_records/forms.py @@ -170,7 +170,7 @@ class RecordSelect(GeoItemSelect, PeriodSelect): cr_relation_types = forms.ChoiceField( label=_("Search within relations"), choices=[] ) - excavation_technics = forms.ChoiceField(label=_("Excavation technique"), choices=[]) + excavation_technics = forms.ChoiceField(label=_("Excavation techniques"), choices=[]) TYPES = PeriodSelect.TYPES + [ FieldType("unit", models.Unit), @@ -305,7 +305,7 @@ class RecordFormGeneral(CustomForm, ManageOldType): label=_("General comment"), widget=forms.Textarea, required=False ) excavation_technic = forms.MultipleChoiceField( - label=_("Excavation technique"), + label=_("Excavation techniques"), choices=[], required=False, widget=widgets.Select2Multiple, |