diff options
-rw-r--r-- | ishtar_common/forms_common.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ishtar_common/forms_common.py b/ishtar_common/forms_common.py index 29fb75031..b2d31c5f3 100644 --- a/ishtar_common/forms_common.py +++ b/ishtar_common/forms_common.py @@ -2076,9 +2076,20 @@ class QADocumentFormMulti(QAForm): qa_creation_date = forms.DateField( label=_("Creation date"), widget=DatePicker, required=False ) + qa_format_type = forms.ChoiceField( + label=_("Format"), choices=[], required=False + ) + qa_support_type = forms.ChoiceField( + label=_("Medium"), choices=[], required=False + ) + qa_scale = forms.CharField( + label=_("Scale"), max_length=30, required=False + ) TYPES = [ FieldType("qa_source_type", models.SourceType), + FieldType("qa_format_type", models.Format), + FieldType("qa_support_type", models.SupportType), ] def _get_qa_authors(self, value): |