49 lines
1.5 KiB
HTML
49 lines
1.5 KiB
HTML
<div class="loading" ng-show="loading">
|
|
<i class="fa fa-spinner fa-spin fa-3x"></i>
|
|
</div>
|
|
|
|
<div class="loading" ng-show="!loading && !organization">
|
|
No matching team found
|
|
</div>
|
|
|
|
<div class="team-view container" ng-show="!loading && organization">
|
|
<div class="organization-header" organization="organization" team-name="teamname"></div>
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">Team Members
|
|
<i class="info-icon fa fa-info-circle" data-placement="left" data-content="Users that inherit all permissions delegated to this team"></i>
|
|
</div>
|
|
<div class="panel-body">
|
|
|
|
<table class="permissions">
|
|
<thead>
|
|
<tr>
|
|
<td>Member</td>
|
|
<td></td>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tr ng-repeat="member in members">
|
|
<td class="user entity">
|
|
<i class="fa fa-user"></i>
|
|
<span>{{ member.username }}</span>
|
|
</td>
|
|
<td>
|
|
<span class="delete-ui" tabindex="0" title="Remove User">
|
|
<span class="delete-ui-button" ng-click="removeMember(member.username)"><button class="btn btn-danger">Remove</button></span>
|
|
<i class="fa fa-remove"></i>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2">
|
|
<span class="entity-search" input-title="'Add a user...'" entity-selected="addNewMember"></span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|