Exclude the document type file for the index edit form

This commit is contained in:
Roberto Rosario
2012-08-15 00:40:59 -04:00
parent fc61ad1440
commit b9b7ab73bb

View File

@@ -11,6 +11,7 @@ class IndexForm(forms.ModelForm):
""" """
class Meta: class Meta:
model = Index model = Index
exclude = ('document_types',)
class IndexTemplateNodeForm(forms.ModelForm): class IndexTemplateNodeForm(forms.ModelForm):