From 537177ca55a973c63b34f84b25aea4c0a8ac2ca0 Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Wed, 9 Mar 2011 13:13:18 +0100 Subject: align name display for well known groups --- coip/extensions/templatetags/permdisplay.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'coip') diff --git a/coip/extensions/templatetags/permdisplay.py b/coip/extensions/templatetags/permdisplay.py index c70bb86..4a16eee 100644 --- a/coip/extensions/templatetags/permdisplay.py +++ b/coip/extensions/templatetags/permdisplay.py @@ -33,13 +33,13 @@ def acldstdisplay(dst): else: return "Unknown user \"%s\"" % username elif dst.display == 'system:anyusers': - return "all users" + return "All users" elif dst.display == 'system:anyentity': - return "all services and identity providers" + return "All services and identity providers" elif dst.display == 'system:anysp': - return "all services" + return "All services" elif dst.display == 'system:anyidp': - return "all identity providers" + return "All identity providers" else: return "members of %s (%s)" % (dst.short,dst.display) -- cgit v1.1