From 68d6310f529279a00b9c86df6d40a44759f7c124 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 17 Mar 2025 12:45:54 +0100 Subject: ✨ Operation bulk update form: add button to add collaborator (refs #6219) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archaeological_operations/forms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'archaeological_operations/forms.py') 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 ), ) -- cgit v1.2.3