diff --git a/apps/documents/forms.py b/apps/documents/forms.py index 8c1f75db78..e29e5b7cc7 100644 --- a/apps/documents/forms.py +++ b/apps/documents/forms.py @@ -204,13 +204,13 @@ class DocumentContentForm(forms.Form): class DocumentForm_view(DetailForm): class Meta: model = Document - exclude = ('file',) + exclude = ('file', 'tags') class DocumentForm_edit(DocumentForm): class Meta: model = Document - exclude = ('file', 'document_type') + exclude = ('file', 'document_type', 'tags') class StagingDocumentForm(forms.Form):