diff options
author | Cefin <kevon@tuta.io> | 2021-11-02 17:39:23 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-08 09:58:49 +0200 |
commit | 97a38fc02cc3edce0c680e5c35507c1f1adeb756 (patch) | |
tree | 6cc023b4e1895c63d689fa06f4c662904f61de99 | |
parent | 204adc785fa05ba783ffb3053c1b2598004c8ac5 (diff) | |
download | Ishtar-97a38fc02cc3edce0c680e5c35507c1f1adeb756.tar.bz2 Ishtar-97a38fc02cc3edce0c680e5c35507c1f1adeb756.zip |
add remains on bulk update on EA search #5174
-rw-r--r-- | archaeological_operations/forms.py | 9 |
1 files changed, 8 insertions, 1 deletions
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): |