summaryrefslogtreecommitdiff
path: root/archaeological_operations/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r--archaeological_operations/forms.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py
index fc915c123..b43bba5ca 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):