From 79095a88a0f25bf49da5725089b6919cd091b838 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 22 Aug 2018 00:15:52 -0400 Subject: [PATCH] Add sub title explanation to the role permission view. Signed-off-by: Roberto Rosario --- mayan/apps/permissions/views.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mayan/apps/permissions/views.py b/mayan/apps/permissions/views.py index 87f5cbc06b..0dc306d441 100644 --- a/mayan/apps/permissions/views.py +++ b/mayan/apps/permissions/views.py @@ -154,6 +154,10 @@ class SetupRolePermissionsView(AssignRemoveView): def get_extra_context(self): return { 'object': self.get_object(), + 'subtitle': _( + 'Permissions granted here will apply to the entire system ' + 'and all objects.' + ), 'title': _('Permissions for role: %s') % self.get_object(), }