diff options
| author | Cefin <kevon@tuta.io> | 2021-11-03 15:32:31 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-08 09:58:49 +0200 | 
| commit | 3c5ed0f4ca035fa3e9334498a227f4d4cf69ed1d (patch) | |
| tree | 40f1d2371e1fa6a08d859842c699a99cff2f442b | |
| parent | 9040078ec6f119db63de6aef9322f09c27338a92 (diff) | |
| download | Ishtar-3c5ed0f4ca035fa3e9334498a227f4d4cf69ed1d.tar.bz2 Ishtar-3c5ed0f4ca035fa3e9334498a227f4d4cf69ed1d.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(  | 
