summaryrefslogtreecommitdiff
path: root/coip/extensions
diff options
context:
space:
mode:
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)