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:32:17 +0200 |
commit | dff77c3dcda6515008e16e40e9088d3c68f57700 (patch) | |
tree | ec80c8134e9561d26a6ee62dc1ce8ab74540e1a0 /archaeological_operations/forms.py | |
parent | f1e8ef57e224f0bca9e79e23f1843d00018cedf0 (diff) | |
download | Ishtar-dff77c3dcda6515008e16e40e9088d3c68f57700.tar.bz2 Ishtar-dff77c3dcda6515008e16e40e9088d3c68f57700.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 d8a6f81ff..59704cf81 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -1747,6 +1747,8 @@ class QAOperationFormMulti(QAForm): reverse_lazy('autocomplete-person') ), ) + qa_comment = forms.CharField(label=_("Comment"), required=False, + widget=forms.Textarea) TYPES = [ FieldType('qa_operation_type', models.OperationType), |