From b9b7ab73bb565ec3c60c949b1d80c72533c4dd70 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 15 Aug 2012 00:40:59 -0400 Subject: [PATCH] Exclude the document type file for the index edit form --- apps/document_indexing/forms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/document_indexing/forms.py b/apps/document_indexing/forms.py index c621b09ed6..90b0e6b158 100644 --- a/apps/document_indexing/forms.py +++ b/apps/document_indexing/forms.py @@ -11,6 +11,7 @@ class IndexForm(forms.ModelForm): """ class Meta: model = Index + exclude = ('document_types',) class IndexTemplateNodeForm(forms.ModelForm):