diff options
author | Cefin <kevon@tuta.io> | 2021-11-02 16:02:16 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-11-16 17:04:41 +0100 |
commit | 0311611264ccc90e7ad7e58b97b0927076a5d2d5 (patch) | |
tree | ce6e3ff46b13ee0676f20a2fc5a7109aaefcdad1 /archaeological_finds | |
parent | 985fdf0e2415503dd9d4bf1f9b922e23d362c28b (diff) | |
download | Ishtar-0311611264ccc90e7ad7e58b97b0927076a5d2d5.tar.bz2 Ishtar-0311611264ccc90e7ad7e58b97b0927076a5d2d5.zip |
add conservatory comment on bulk update on find search #5178
Diffstat (limited to 'archaeological_finds')
-rw-r--r-- | archaeological_finds/forms.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index c95cef377..c1b5a229d 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -818,6 +818,7 @@ class QAFindFormMulti(QAForm): "qa_description": FormHeader(_("Description")), "qa_checked_type": FormHeader(_("Sheet")), "qa_period": FormHeader(_("Datation")), + "qa_conservatory_comment": FormHeader(_("Preservation")), } SINGLE_FIELDS = [ @@ -912,6 +913,10 @@ class QAFindFormMulti(QAForm): label=_("Comment on dating"), required=False, widget=forms.Textarea ) + qa_conservatory_comment = forms.CharField( + label=_("Comment on conservatory"), required=False, widget=forms.Textarea + ) + TYPES = [ FieldType("qa_material_types", models.MaterialType, is_multiple=True), FieldType("qa_object_types", models.ObjectType, is_multiple=True), |