diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-04-24 11:32:17 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-04-24 11:36:59 +0200 |
commit | 32569ae9e3c7d1300f28c7ebe7f1b3e8c10efd41 (patch) | |
tree | b14051aded5389f5a1d991bf9318eeb0758993bc /archaeological_operations/forms.py | |
parent | 9c5d8359d194680e85145a3d9c8cf0b84fce7d34 (diff) | |
download | Ishtar-32569ae9e3c7d1300f28c7ebe7f1b3e8c10efd41.tar.bz2 Ishtar-32569ae9e3c7d1300f28c7ebe7f1b3e8c10efd41.zip |
✨ operation - quick edit: add comment field
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r-- | archaeological_operations/forms.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 28d8825f4..63436bf57 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -1756,6 +1756,8 @@ class QAOperationFormMulti(QAForm): associated_model=Person, new=True ), ) + qa_comment = forms.CharField(label=_("Comment"), required=False, + widget=forms.Textarea) TYPES = [ FieldType('qa_operation_type', models.OperationType), |