diff --git a/HISTORY.rst b/HISTORY.rst index d72c7ede29..cc4b8bee37 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -11,6 +11,9 @@ Fixes workflow API creation view. * Fix document cabinet list API view. Thanks for forum user "jere" for the report. Forum topic 1039. +* Fix document template column field. GitLab issue #655. + Thanks to Christian Wiegand (@christianwgd) for the + report. 3.2.6 (2019-07-10) ================== diff --git a/docs/releases/3.2.7.rst b/docs/releases/3.2.7.rst index a56cf2986b..9af62fdaac 100644 --- a/docs/releases/3.2.7.rst +++ b/docs/releases/3.2.7.rst @@ -18,6 +18,9 @@ Changes Fixes workflow API creation view. - Fix document cabinet list API view. Thanks for forum user "jere" for the report. Forum topic 1039. +- Fix document template column field. GitLab issue #655. + Thanks to Christian Wiegand (@christianwgd) for the + report. Removals -------- @@ -111,6 +114,7 @@ Bugs fixed or issues closed --------------------------- - :gitlab-issue:`654` Internal Server Error, Document Checkout +- :gitlab-issue:`655` Index setup tree view shows two times the "enabled" field instead of "Link documents" - :forum-topic:`1039` Re: /api/documents/{id}/cabinets returns 500 .. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/mayan/apps/document_indexing/apps.py b/mayan/apps/document_indexing/apps.py index c9b9dc5cbd..670f3187a6 100644 --- a/mayan/apps/document_indexing/apps.py +++ b/mayan/apps/document_indexing/apps.py @@ -135,8 +135,8 @@ class DocumentIndexingApp(MayanAppConfig): widget=TwoStateWidget ) SourceColumn( - attribute='enabled', is_sortable=True, source=IndexTemplateNode, - widget=TwoStateWidget + attribute='link_documents', is_sortable=True, + source=IndexTemplateNode, widget=TwoStateWidget ) SourceColumn( func=lambda context: index_instance_item_link(context['object']),