diff options
author | Cefin <kevon@tuta.io> | 2021-11-03 15:32:31 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-11-16 17:04:41 +0100 |
commit | 09ffeeb464e53eb37a005c92c0af54af25a59561 (patch) | |
tree | 1e3d597ac5ae7867571607a944d3fef832edc018 | |
parent | c52fa19b40d8c643f2fe6e80d7d5c25a21bc0299 (diff) | |
download | Ishtar-09ffeeb464e53eb37a005c92c0af54af25a59561.tar.bz2 Ishtar-09ffeeb464e53eb37a005c92c0af54af25a59561.zip |
add town on bulk update on UE search #5174 part two
-rw-r--r-- | archaeological_context_records/forms.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/archaeological_context_records/forms.py b/archaeological_context_records/forms.py index e4a17f6ce..a7f9347be 100644 --- a/archaeological_context_records/forms.py +++ b/archaeological_context_records/forms.py @@ -702,7 +702,10 @@ class QAContextRecordFormMulti(QAForm): "qa_unit": models.Unit, "qa_town": models.Town, } - REPLACE_FIELDS = ["qa_unit"] + REPLACE_FIELDS = [ + "qa_unit", + "qa_town", + ] MULTI = True qa_relation_type = forms.ChoiceField( |