From c04063838b2ca840855f1c6e5f60bfeec13fd521 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 21 Apr 2019 15:54:34 -0400 Subject: [PATCH] Add tool and setup menu sub title help messages Signed-off-by: Roberto Rosario --- mayan/apps/common/views.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mayan/apps/common/views.py b/mayan/apps/common/views.py index 61a9b37f7e..8d54108218 100644 --- a/mayan/apps/common/views.py +++ b/mayan/apps/common/views.py @@ -244,6 +244,9 @@ class SetupListView(TemplateView): ), 'resolved_links': menu_setup.resolve(context=context), 'title': _('Setup items'), + 'subtitle': _( + 'Here you can configure all aspects of the system.' + ) } ) return data @@ -262,6 +265,9 @@ class ToolsListView(SimpleView): return { 'resolved_links': self.get_menu_links(), 'title': _('Tools'), + 'subtitle': _( + 'These modules are used to do system maintenance.' + ) }