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 39d97c927..66ea273cf 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -293,7 +293,7 @@ class PreservationForm(ManageOldType, forms.Form): 'alteration_cause': models.AlterationCauseType, 'treatment_emergency': models.TreatmentEmergencyType, 'conservatory_state': models.ConservatoryState, - 'preservation_to_consider': models.PreservationType, + 'preservation_to_consider': models.TreatmentType, } conservatory_state = forms.ChoiceField(label=_(u"Conservatory state"), choices=[], required=False) @@ -304,7 +304,7 @@ class PreservationForm(ManageOldType, forms.Form): label=_(u"Alteration cause"), choices=[], widget=widgets.Select2Multiple, required=False) preservation_to_consider = forms.MultipleChoiceField( - label=_(u"Preservation type"), choices=[], + label=_(u"Recommended treatments"), choices=[], widget=widgets.Select2Multiple, required=False) treatment_emergency = forms.ChoiceField(label=_("Treatment emergency"), choices=[], required=False) @@ -318,7 +318,7 @@ class PreservationForm(ManageOldType, forms.Form): TYPES = [ ('conservatory_state', models.ConservatoryState, False), ('treatment_emergency', models.TreatmentEmergencyType, False), - ('preservation_to_consider', models.PreservationType, True), + ('preservation_to_consider', models.TreatmentType, True), ('alteration', models.AlterationType, True), ('alteration_cause', models.AlterationCauseType, True), ] |