2017-07-14 19:20:19 -05:00
|
|
|
## -*- coding: utf-8; -*-
|
2015-08-11 15:01:21 -05:00
|
|
|
<%inherit file="/master/view.mako" />
|
|
|
|
|
2017-07-14 19:20:19 -05:00
|
|
|
<%def name="extra_styles()">
|
|
|
|
${parent.extra_styles()}
|
2015-08-11 15:01:21 -05:00
|
|
|
${h.stylesheet_link(request.static_url('tailbone:static/css/perms.css'))}
|
|
|
|
</%def>
|
|
|
|
|
|
|
|
${parent.body()}
|
|
|
|
|
|
|
|
<h2>Users</h2>
|
|
|
|
|
|
|
|
% if instance is guest_role:
|
2016-06-15 12:51:10 -05:00
|
|
|
<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>
|
2015-08-11 15:01:21 -05:00
|
|
|
% elif users:
|
|
|
|
<p>The following users are assigned to this role:</p>
|
|
|
|
${users.render_grid()|n}
|
|
|
|
% else:
|
|
|
|
<p>There are no users assigned to this role.</p>
|
|
|
|
% endif
|