summaryrefslogtreecommitdiff
path: root/archaeological_operations
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2025-03-17 12:45:54 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2025-03-17 19:46:08 +0100
commit68d6310f529279a00b9c86df6d40a44759f7c124 (patch)
tree7e62e284fc1421102cc3ea839b8048e4e50c0e6a /archaeological_operations
parent985b983ef5373827988e5128892eaa33a0abdcf5 (diff)
downloadIshtar-68d6310f529279a00b9c86df6d40a44759f7c124.tar.bz2
Ishtar-68d6310f529279a00b9c86df6d40a44759f7c124.zip
✨ Operation bulk update form: add button to add collaborator (refs #6219)
Diffstat (limited to 'archaeological_operations')
-rw-r--r--archaeological_operations/forms.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py
index c59fbc86c..939a87de9 100644
--- a/archaeological_operations/forms.py
+++ b/archaeological_operations/forms.py
@@ -1745,7 +1745,8 @@ class QAOperationFormMulti(QAForm):
qa_collaborators = forms.IntegerField(
label=_("Collaborators"), required=False,
widget=widgets.JQueryAutoComplete(
- reverse_lazy('autocomplete-person')
+ reverse_lazy('autocomplete-person'),
+ associated_model=Person, new=True
),
)