diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-01-12 09:32:43 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:23 +0100 |
commit | b7771450c2c821f339fcfaf078de701d2120691b (patch) | |
tree | f22d28d5355f61e74560be109e1b55ef5e211c64 /archaeological_finds/forms.py | |
parent | e79d8a9cf3d0298ff4e04c16a156f0395b3e7c0c (diff) | |
download | Ishtar-b7771450c2c821f339fcfaf078de701d2120691b.tar.bz2 Ishtar-b7771450c2c821f339fcfaf078de701d2120691b.zip |
Fix recommended treatments criteria name (refs #5028)
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( |