summaryrefslogtreecommitdiff
path: root/coip/extensions
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2011-03-09 13:13:18 +0100
committerLeif Johansson <leifj@sunet.se>2011-03-09 13:13:18 +0100
commit537177ca55a973c63b34f84b25aea4c0a8ac2ca0 (patch)
treee196385790be442b8dddccd3e44e48bb2b43c9d9 /coip/extensions
parent010e93b57637125a09c231b59d25c37f849af364 (diff)
align name display for well known groups
Diffstat (limited to 'coip/extensions')
-rw-r--r--coip/extensions/templatetags/permdisplay.py8
1 files changed, 4 insertions, 4 deletions
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)