diff options
Diffstat (limited to 'archaeological_finds/forms.py')
-rw-r--r-- | archaeological_finds/forms.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index 922866ffd..49fae40b4 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -873,7 +873,7 @@ class PreservationForm(CustomForm, ManageOldType): label=_(u"Alteration cause"), choices=[], widget=widgets.Select2Multiple, required=False) preservation_to_consider = forms.MultipleChoiceField( - label=_(u"Recommended treatments"), choices=[], + label=_("Recommended treatments"), choices=[], widget=widgets.Select2Multiple, required=False) treatment_emergency = forms.ChoiceField(label=_("Treatment emergency"), choices=[], required=False) @@ -1190,9 +1190,9 @@ class FindSelect(DocumentItemSelect, PeriodSelect): alteration_causes = forms.ChoiceField( label=_(u"Alteration cause"), choices=[]) preservation_to_considers = forms.ChoiceField( - choices=[], label=_(u"Preservation type")) + choices=[], label=_("Recommended treatments")) treatment_emergency = forms.ChoiceField( - choices=[], label=_(u"Treatment emergency") + choices=[], label=_("Treatment emergency") ) estimated_value__higher = FloatField( |