Add awareness of special 'Authenticated' role, in permissions UI etc.

This commit is contained in:
Lance Edgar 2016-06-15 12:51:10 -05:00
parent 68ca5766d1
commit 35d4d35fd6
3 changed files with 16 additions and 9 deletions

View file

@ -18,7 +18,9 @@ ${parent.body()}
<h2>Users</h2>
% if instance is guest_role:
<p>The guest role is implied for all users.</p>
<p>The guest role is implied for all anonymous users, i.e. when not logged in.</p>
% elif instance is authenticated_role:
<p>The authenticated role is implied for all users, but only when logged in.</p>
% elif users:
<p>The following users are assigned to this role:</p>
${users.render_grid()|n}