mirror of https://github.com/portainer/portainer
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
135 lines
7.5 KiB
135 lines
7.5 KiB
8 years ago
|
<div class="row">
|
||
|
<div class="col-sm-6">
|
||
|
<rd-widget>
|
||
|
<rd-widget-header classes="col-sm-12 col-md-6 nopadding" icon="fa-users" title="Users and teams">
|
||
|
<div class="pull-md-right pull-lg-right">
|
||
|
Items per page:
|
||
|
<select ng-model="$ctrl.state.pagination_count_accesses" ng-change="$ctrl.changePaginationCountAccesses()">
|
||
|
<option value="0">All</option>
|
||
|
<option value="10">10</option>
|
||
|
<option value="25">25</option>
|
||
|
<option value="50">50</option>
|
||
|
<option value="100">100</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</rd-widget-header>
|
||
|
<rd-widget-taskbar classes="col-sm-12 nopadding">
|
||
|
<div class="col-sm-12 col-md-6 nopadding">
|
||
|
<button class="btn btn-primary btn-sm" ng-click="$ctrl.authorizeAllAccesses()" ng-disabled="$ctrl.accesses.length === 0 || $ctrl.filteredUsers.length === 0"><i class="fa fa-user-plus space-right" aria-hidden="true"></i>Authorize all</button>
|
||
|
</div>
|
||
|
<div class="col-sm-12 col-md-6 nopadding">
|
||
|
<input type="text" id="filter" ng-model="$ctrl.state.filterUsers" placeholder="Filter..." class="form-control input-sm" />
|
||
|
</div>
|
||
|
</rd-widget-taskbar>
|
||
|
<rd-widget-body classes="no-padding">
|
||
|
<div class="table-responsive">
|
||
|
<table class="table table-hover">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>
|
||
|
<a ng-click="$ctrl.orderAccesses('Name')">
|
||
|
Name
|
||
|
<span ng-show="$ctrl.state.sortAccessesBy == 'Name' && !$ctrl.state.sortAccessesReverse" class="glyphicon glyphicon-chevron-down"></span>
|
||
|
<span ng-show="$ctrl.state.sortAccessesBy == 'Name' && $ctrl.state.sortAccessesReverse" class="glyphicon glyphicon-chevron-up"></span>
|
||
|
</a>
|
||
|
</th>
|
||
|
<th>
|
||
|
<a ng-click="$ctrl.orderAccesses('Type')">
|
||
|
Type
|
||
|
<span ng-show="$ctrl.state.sortAccessesBy == 'Type' && !$ctrl.state.sortAccessesReverse" class="glyphicon glyphicon-chevron-down"></span>
|
||
|
<span ng-show="$ctrl.state.sortAccessesBy == 'Type' && $ctrl.state.sortAccessesReverse" class="glyphicon glyphicon-chevron-up"></span>
|
||
|
</a>
|
||
|
</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<tr ng-click="$ctrl.authorizeAccess(user)" class="interactive" dir-paginate="user in $ctrl.accesses | filter:$ctrl.state.filterUsers | orderBy:$ctrl.state.sortAccessesBy:$ctrl.state.sortAccessesReverse | itemsPerPage: $ctrl.state.pagination_count_accesses">
|
||
|
<td>{{ user.Name }}</td>
|
||
|
<td>
|
||
|
<i class="fa" ng-class="user.Type === 'user' ? 'fa-user' : 'fa-users'" aria-hidden="true" style="margin-right: 2px;"></i>
|
||
|
{{ user.Type }}
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr ng-if="!$ctrl.accesses">
|
||
|
<td colspan="2" class="text-center text-muted">Loading...</td>
|
||
|
</tr>
|
||
|
<tr ng-if="$ctrl.accesses.length === 0 || ($ctrl.accesses | filter:$ctrl.state.filterUsers | orderBy:$ctrl.state.sortAccessesBy:$ctrl.state.sortAccessesReverse | itemsPerPage: $ctrl.state.pagination_count_accesses).length === 0">
|
||
|
<td colspan="2" class="text-center text-muted">No user or team available.</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<div ng-if="$ctrl.accesses" class="pull-left pagination-controls">
|
||
|
<dir-pagination-controls></dir-pagination-controls>
|
||
|
</div>
|
||
|
</div>
|
||
|
</rd-widget-body>
|
||
|
</rd-widget>
|
||
|
</div>
|
||
|
<div class="col-sm-6">
|
||
|
<rd-widget>
|
||
|
<rd-widget-header classes="col-sm-12 col-md-6 nopadding" icon="fa-users" title="Authorized users and teams">
|
||
|
<div class="pull-md-right pull-lg-right">
|
||
|
Items per page:
|
||
|
<select ng-model="$ctrl.state.pagination_count_authorizedAccesses" ng-change="$ctrl.changePaginationCountAuthorizedAccesses()">
|
||
|
<option value="0">All</option>
|
||
|
<option value="10">10</option>
|
||
|
<option value="25">25</option>
|
||
|
<option value="50">50</option>
|
||
|
<option value="100">100</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</rd-widget-header>
|
||
|
<rd-widget-taskbar classes="col-sm-12 nopadding">
|
||
|
<div class="col-sm-12 col-md-6 nopadding">
|
||
|
<button class="btn btn-primary btn-sm" ng-click="$ctrl.unauthorizeAllAccesses()" ng-disabled="$ctrl.authorizedAccesses.length === 0 || $ctrl.filteredAuthorizedUsers.length === 0"><i class="fa fa-user-times space-right" aria-hidden="true"></i>Deny all</button>
|
||
|
</div>
|
||
|
<div class="col-sm-12 col-md-6 nopadding">
|
||
|
<input type="text" id="filter" ng-model="$ctrl.state.filterAuthorizedUsers" placeholder="Filter..." class="form-control input-sm" />
|
||
|
</div>
|
||
|
</rd-widget-taskbar>
|
||
|
<rd-widget-body classes="no-padding">
|
||
|
<div class="table-responsive">
|
||
|
<table class="table table-hover">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>
|
||
|
<a ng-click="$ctrl.orderAuthorizedAccesses('Name')">
|
||
|
Name
|
||
|
<span ng-show="$ctrl.state.sortAuthorizedAccessesBy == 'Name' && !$ctrl.state.sortAuthorizedAccessesReverse" class="glyphicon glyphicon-chevron-down"></span>
|
||
|
<span ng-show="$ctrl.state.sortAuthorizedAccessesBy == 'Name' && $ctrl.state.sortAuthorizedAccessesReverse" class="glyphicon glyphicon-chevron-up"></span>
|
||
|
</a>
|
||
|
</th>
|
||
|
<th>
|
||
|
<a ng-click="$ctrl.orderAuthorizedAccesses('Type')">
|
||
|
Type
|
||
|
<span ng-show="$ctrl.state.sortAuthorizedAccessesBy == 'Type' && !$ctrl.state.sortAuthorizedAccessesReverse" class="glyphicon glyphicon-chevron-down"></span>
|
||
|
<span ng-show="$ctrl.state.sortAuthorizedAccessesBy == 'Type' && $ctrl.state.sortAuthorizedAccessesReverse" class="glyphicon glyphicon-chevron-up"></span>
|
||
|
</a>
|
||
|
</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<tr ng-click="$ctrl.unauthorizeAccess(user)" class="interactive" pagination-id="table_authaccess" dir-paginate="user in $ctrl.authorizedAccesses | filter:$ctrl.state.filterAuthorizedUsers | orderBy:$ctrl.state.sortAuthorizedAccessesBy:$ctrl.state.sortAuthorizedAccessesReverse | itemsPerPage: $ctrl.state.pagination_count_authorizedAccesses">
|
||
|
<td>{{ user.Name }}</td>
|
||
|
<td>
|
||
|
<i class="fa" ng-class="user.Type === 'user' ? 'fa-user' : 'fa-users'" aria-hidden="true" style="margin-right: 2px;"></i>
|
||
|
{{ user.Type }}
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr ng-if="!$ctrl.authorizedAccesses">
|
||
|
<td colspan="2" class="text-center text-muted">Loading...</td>
|
||
|
</tr>
|
||
|
<tr ng-if="$ctrl.authorizedAccesses.length === 0 || (authorizedAccesses | filter:state.filterAuthorizedUsers | orderBy:sortTypeAuthorizedAccesses:sortReverseAuthorizedAccesses | itemsPerPage: state.pagination_count_authorizedAccesses).length === 0">
|
||
|
<td colspan="2" class="text-center text-muted">No authorized user or team.</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<div ng-if="$ctrl.authorizedAccesses" class="pull-left pagination-controls">
|
||
|
<dir-pagination-controls pagination-id="table_authaccess"></dir-pagination-controls>
|
||
|
</div>
|
||
|
</div>
|
||
|
</rd-widget-body>
|
||
|
</rd-widget>
|
||
|
</div>
|
||
|
</div>
|