From 5d30356b76adaf4636da89fd177405c59e98658f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 19 Jun 2015 19:37:36 -0400 Subject: [PATCH] Exclude description field from the document upload form to save space --- mayan/apps/sources/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/sources/forms.py b/mayan/apps/sources/forms.py index ac4f4dfe87..2b70477f70 100644 --- a/mayan/apps/sources/forms.py +++ b/mayan/apps/sources/forms.py @@ -18,7 +18,7 @@ logger = logging.getLogger(__name__) class NewDocumentForm(DocumentForm): class Meta(DocumentForm.Meta): - exclude = ('label',) + exclude = ('label', 'description') class NewVersionForm(forms.Form):