From 849d73223c7fd596570b949f664ef078e0c1ca37 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 1 Apr 2015 13:28:41 -0400 Subject: [PATCH] Add explicit fields for IndexTemplateNodeForm as will be required by Django 1.8 --- mayan/apps/document_indexing/forms.py | 1 + 1 file changed, 1 insertion(+) 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