aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2017-01-10 16:07:15 +0000
committerMatthew Somerville <matthew-github@dracos.co.uk>2017-01-10 17:16:22 +0000
commit940bd236650b2bf7208d9b06c33ee30ad94492f6 (patch)
tree6ee7492de3a2a9815afeddab5d5fc51e5a11cbcd
parent3fd19343c5e13e5a26740e181de03e702c642eee (diff)
Use ‘*’ on admin page to signify superuser.
As we now have many permissions, highlighting those who have the moderate permission is not very useful.
-rw-r--r--templates/web/base/admin/users.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/base/admin/users.html b/templates/web/base/admin/users.html
index 7bbe04e1e..47901aed8 100644
--- a/templates/web/base/admin/users.html
+++ b/templates/web/base/admin/users.html
@@ -26,7 +26,7 @@
<td>[% PROCESS value_or_nbsp value=user.name %]</td>
<td><a href="[% c.uri_for( 'reports', search => user.email ) %]">[% PROCESS value_or_nbsp value=user.email %]</a></td>
<td>[% PROCESS value_or_nbsp value=user.from_body.name %]
- [% IF NOT user.is_superuser AND user.has_body_permission_to('moderate') %] * [% END %]
+ [% IF user.is_superuser %] * [% END %]
</td>
[% IF c.cobrand.moniker != 'zurich' %]
<td>[% user.flagged == 2 ? loc('(Email in abuse table)') : user.flagged ? loc('Yes') : '&nbsp;' %]</td>