From e67a7ac0e246985beec12a8193928fe0f7e09280 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 12 Jan 2021 09:32:43 +0100 Subject: Fix recommended treatments criteria name (refs #5028) --- archaeological_finds/forms.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'archaeological_finds/forms.py') 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( -- cgit v1.2.3