From 97a38fc02cc3edce0c680e5c35507c1f1adeb756 Mon Sep 17 00:00:00 2001 From: Cefin Date: Tue, 2 Nov 2021 17:39:23 +0100 Subject: add remains on bulk update on EA search #5174 --- archaeological_operations/forms.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'archaeological_operations/forms.py') diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 3494c29fc..bdc351c35 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -2034,11 +2034,18 @@ class QAArchaeologicalSiteFormMulti(QAForm): ) qa_cultural_attributions = forms.ChoiceField( label=_("Cultural attributions"), - choices=[] + required=False, + choices=[], + ) + qa_remains = forms.ChoiceField( + label=("Remains"), + required=False, + choices=[], ) TYPES = [ FieldType('qa_cultural_attributions', models.CulturalAttributionType), + FieldType('qa_remains', models.RemainType), ] def _get_qa_towns(self, value): -- cgit v1.2.3