updated acp category privilege settings so that not all groups are shown in privilege table, closes #3036
parent
cc2a92d73f
commit
8f7416d1cb
@ -1,51 +1,74 @@
|
|||||||
<div class="privilege-table-container">
|
<table class="table table-striped table-hover privilege-table">
|
||||||
<table class="table table-striped table-hover privilege-table">
|
<tr>
|
||||||
<tr>
|
<th colspan="2">User</th>
|
||||||
<th colspan="2">User</th>
|
<!-- BEGIN privileges.labels.users -->
|
||||||
<!-- BEGIN privileges.labels.users -->
|
<th class="text-center">{privileges.labels.users.name}</th>
|
||||||
<th class="text-center">{privileges.labels.users.name}</th>
|
<!-- END privileges.labels.users -->
|
||||||
<!-- END privileges.labels.users -->
|
</tr>
|
||||||
</tr>
|
<!-- IF privileges.users.length -->
|
||||||
<!-- IF privileges.users.length -->
|
<!-- BEGIN privileges.users -->
|
||||||
<!-- BEGIN privileges.users -->
|
<tr data-uid="{privileges.users.uid}">
|
||||||
<tr data-uid="{privileges.users.uid}">
|
<td><img src="{privileges.users.picture}" title="{privileges.users.username}" /></td>
|
||||||
<td><img src="{privileges.users.picture}" title="{privileges.users.username}" /></td>
|
<td>{privileges.users.username}</td>
|
||||||
<td>{privileges.users.username}</td>
|
{function.spawnPrivilegeStates, privileges.users.username, privileges}
|
||||||
{function.spawnPrivilegeStates, privileges.users.username, privileges}
|
</tr>
|
||||||
</tr>
|
<!-- END privileges.users -->
|
||||||
<!-- END privileges.users -->
|
<tr>
|
||||||
<!-- ELSE -->
|
<td colspan="{privileges.columnCount}">
|
||||||
<tr>
|
<button type="button" class="btn btn-primary btn-xs pull-right" data-ajaxify="false" data-action="search.user"><i class="fa fa-plus"></i> Add User</button>
|
||||||
<td colspan="{privileges.columnCount}">
|
</td>
|
||||||
<div class="alert alert-info">No user-specific privileges in this category.</div>
|
</tr>
|
||||||
</td>
|
<!-- ELSE -->
|
||||||
</tr>
|
<tr>
|
||||||
<!-- ENDIF privileges.users.length -->
|
<td colspan="{privileges.columnCount}">
|
||||||
</table>
|
<div class="alert alert-info">
|
||||||
|
<button type="button" class="btn btn-primary btn-xs pull-right" data-ajaxify="false" data-action="search.user"><i class="fa fa-plus"></i> Add User</button>
|
||||||
|
No user-specific privileges in this category.
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<!-- ENDIF privileges.users.length -->
|
||||||
|
</table>
|
||||||
|
|
||||||
<table class="table table-striped table-hover privilege-table">
|
<table class="table table-striped table-hover privilege-table">
|
||||||
<tr>
|
<tr>
|
||||||
<th colspan="1">Group</th>
|
<th colspan="2">Group</th>
|
||||||
<!-- BEGIN privileges.labels.groups -->
|
<!-- BEGIN privileges.labels.groups -->
|
||||||
<th class="text-center">{privileges.labels.groups.name}</th>
|
<th class="text-center">{privileges.labels.groups.name}</th>
|
||||||
<!-- END privileges.labels.groups -->
|
<!-- END privileges.labels.groups -->
|
||||||
</tr>
|
</tr>
|
||||||
<!-- BEGIN privileges.groups -->
|
<!-- IF privileges.groups.length -->
|
||||||
<tr data-group-name="{privileges.groups.name}" data-private="<!-- IF privileges.groups.isPrivate -->1<!-- ELSE -->0<!-- ENDIF privileges.groups.isPrivate -->">
|
<!-- BEGIN privileges.groups -->
|
||||||
<td>
|
<tr data-group-name="{privileges.groups.name}" data-private="<!-- IF privileges.groups.isPrivate -->1<!-- ELSE -->0<!-- ENDIF privileges.groups.isPrivate -->">
|
||||||
<!-- IF privileges.groups.isPrivate -->
|
<td>
|
||||||
<i class="fa fa-lock text-muted" title="This group is private"></i>
|
<!-- IF privileges.groups.isPrivate -->
|
||||||
<!-- ENDIF privileges.groups.isPrivate -->
|
<i class="fa fa-lock text-muted" title="This group is private"></i>
|
||||||
{privileges.groups.name}
|
<!-- ENDIF privileges.groups.isPrivate -->
|
||||||
</td>
|
{privileges.groups.name}
|
||||||
{function.spawnPrivilegeStates, name, privileges}
|
</td>
|
||||||
</tr>
|
<td></td>
|
||||||
<!-- END privileges.groups -->
|
{function.spawnPrivilegeStates, name, privileges}
|
||||||
</table>
|
</tr>
|
||||||
<div class="help-block">
|
<!-- END privileges.groups -->
|
||||||
If the <code>registered-users</code> group is granted a specific privilege, all other groups receive an
|
<tr>
|
||||||
<strong>implicit privilege</strong>, even if they are not explicitly defined/checked. This implicit
|
<td colspan="{privileges.columnCount}">
|
||||||
privilege is shown to you because all users are part of the <code>registered-users</code> user group,
|
<button type="button" class="btn btn-primary btn-xs pull-right" data-ajaxify="false" data-action="search.group"><i class="fa fa-plus"></i> Add Group</button>
|
||||||
and so, privileges for additional groups need not be explicitly granted.
|
</td>
|
||||||
</div>
|
</tr>
|
||||||
|
<!-- ELSE -->
|
||||||
|
<tr>
|
||||||
|
<td colspan="{privileges.columnCount}">
|
||||||
|
<div class="alert alert-info">
|
||||||
|
<button type="button" class="btn btn-primary btn-xs pull-right" data-ajaxify="false" data-action="search.group"><i class="fa fa-plus"></i> Add Group</button>
|
||||||
|
No group-specific privileges in this category.
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<!-- ENDIF privileges.groups.length -->
|
||||||
|
</table>
|
||||||
|
<div class="help-block">
|
||||||
|
If the <code>registered-users</code> group is granted a specific privilege, all other groups receive an
|
||||||
|
<strong>implicit privilege</strong>, even if they are not explicitly defined/checked. This implicit
|
||||||
|
privilege is shown to you because all users are part of the <code>registered-users</code> user group,
|
||||||
|
and so, privileges for additional groups need not be explicitly granted.
|
||||||
</div>
|
</div>
|
Loading…
Reference in New Issue