diff --git a/mayan/apps/document_indexing/forms.py b/mayan/apps/document_indexing/forms.py index 07c724dd54..f927b018d9 100644 --- a/mayan/apps/document_indexing/forms.py +++ b/mayan/apps/document_indexing/forms.py @@ -28,4 +28,5 @@ class IndexTemplateNodeForm(forms.ModelForm): self.fields['expression'].help_text = ' '.join([unicode(self.fields['expression'].help_text), ModelAttribute.help_text_for(Document, type_names=['indexing'])]) class Meta: + fields = ('parent', 'index', 'expression', 'enabled', 'link_documents') model = IndexTemplateNode