summaryrefslogtreecommitdiff
path: root/archaeological_warehouse/forms.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2025-09-30 14:06:45 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2025-10-02 23:15:26 +0200
commit93ece4d67007e86066726d9b724a7fefa86db68f (patch)
tree33979ef9781993a9e983b0dcf4b6937fdead229a /archaeological_warehouse/forms.py
parentcacd9f9389b4ccf136cf50191a36b7fbaf4bbded (diff)
downloadIshtar-93ece4d67007e86066726d9b724a7fefa86db68f.tar.bz2
Ishtar-93ece4d67007e86066726d9b724a7fefa86db68f.zip
🗃️ finds - specific tables for recommended treatments
Diffstat (limited to 'archaeological_warehouse/forms.py')
-rw-r--r--archaeological_warehouse/forms.py7
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),
]