From 8552856207fc9465b71e9253b796ee3a68bd401a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 29 Apr 2011 09:32:13 -0400 Subject: [PATCH] Exclude tags from the local document upload form --- apps/documents/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documents/forms.py b/apps/documents/forms.py index ba271c1261..8c1f75db78 100644 --- a/apps/documents/forms.py +++ b/apps/documents/forms.py @@ -163,7 +163,7 @@ class DocumentForm(forms.ModelForm): class Meta: model = Document - exclude = ('description',) + exclude = ('description', 'tags') new_filename = forms.CharField( label=_('New document filename'), required=False