diff options
| author | Cefin <kevon@tuta.io> | 2021-11-02 16:02:16 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-08 09:58:49 +0200 | 
| commit | 89e53c989847af8ea887f1ce4eafd2e885a8d927 (patch) | |
| tree | 062fbc2b2be7f2f3e58b983dd577a35c2a106387 | |
| parent | 511e1755feceb5647517d353c5f10b3645df7ee0 (diff) | |
| download | Ishtar-89e53c989847af8ea887f1ce4eafd2e885a8d927.tar.bz2 Ishtar-89e53c989847af8ea887f1ce4eafd2e885a8d927.zip | |
add conservatory comment on bulk update on find search #5178
| -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), | 
