diff options
Diffstat (limited to 'archaeological_warehouse/forms.py')
-rw-r--r-- | archaeological_warehouse/forms.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/archaeological_warehouse/forms.py b/archaeological_warehouse/forms.py index 8a16a53ce..5b22362c4 100644 --- a/archaeological_warehouse/forms.py +++ b/archaeological_warehouse/forms.py @@ -49,6 +49,7 @@ from archaeological_finds.models import ( IntegrityType, MaterialType, ObjectType, + RecommendedTreatmentType, RemarkabilityType, TreatmentEmergencyType, Treatment, @@ -598,8 +599,8 @@ class ContainerSelect(DocumentItemSelect): conservatory_state = forms.ChoiceField(label=_("Conservatory state"), choices=[]) alterations = forms.ChoiceField(label=_("Alteration"), choices=[]) alteration_causes = forms.ChoiceField(label=_("Alteration cause"), choices=[]) - preservation_to_considers = forms.ChoiceField( - choices=[], label=_("Preservation type") + recommended_treatments = forms.ChoiceField( + choices=[], label=_("Recommended treatments") ) treatment_emergency = forms.ChoiceField(choices=[], label=_("Treatment emergency")) @@ -610,7 +611,7 @@ class ContainerSelect(DocumentItemSelect): FieldType("conservatory_state", ConservatoryState), FieldType("alterations", AlterationType), FieldType("alteration_causes", AlterationCauseType), - FieldType("preservation_to_considers", TreatmentType), + FieldType("recommended_treatments", RecommendedTreatmentType), FieldType("treatment_emergency", TreatmentEmergencyType), FieldType("container_type", models.ContainerType), ] |