From 1088248bf5168c146e9f0c7068aa2a9d6b450bf5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 3 Sep 2018 19:48:09 -0400 Subject: [PATCH] Add missing icon from the document state no result template. Signed-off-by: Roberto Rosario --- mayan/apps/document_states/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mayan/apps/document_states/views.py b/mayan/apps/document_states/views.py index e09f717e13..22ad5a23cc 100644 --- a/mayan/apps/document_states/views.py +++ b/mayan/apps/document_states/views.py @@ -678,17 +678,18 @@ class WorkflowListView(SingleObjectListView): def get_extra_context(self): return { 'hide_object': True, + 'no_results_icon': icon_workflow_list, 'no_results_main_link': link_setup_workflow_create.resolve( context=RequestContext( self.request, {} ) ), - 'no_results_title': _('There are no workflows'), 'no_results_text': _( 'Create some workflows and associated them with a document ' 'type. Active workflows will be shown here and the documents ' 'for which they are executing.' ), + 'no_results_title': _('There are no workflows'), 'title': _('Workflows'), }