mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 11:41:54 +01:00
51 lines
2.0 KiB
HTML
51 lines
2.0 KiB
HTML
<div class="tab-pane" element-height>
|
|
<div class="col-xs-12 col-md-12 each-tab-pane">
|
|
<div class="form-inline">
|
|
<div class="input-group">
|
|
<input type="text" class="form-control" placeholder="" ng-model="vm.username" size="30">
|
|
<span class="input-group-btn">
|
|
<button class="btn btn-primary" type="button" ng-click="vm.searchUser()"><span class="glyphicon glyphicon-search"></span></button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="pane">
|
|
<div class="sub-pane">
|
|
<div class="table-head-container">
|
|
<table class="table table-pane table-header">
|
|
<thead>
|
|
<th width="15%">// 'username' | tr //</th>
|
|
<th width="20%">// 'email' | tr //</th>
|
|
<th width="35%">// 'registration_time' | tr //</th>
|
|
<th width="15%">// 'administrator' | tr //</th>
|
|
<th width="20%">// 'operation' | tr //</th>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="table-body-container">
|
|
<table class="table table-pane">
|
|
<tbody>
|
|
<tr ng-repeat="u in vm.users">
|
|
<td width="15%">//u.username//</td>
|
|
<td width="20%">//u.email//</td>
|
|
<td width="35%">//u.creation_time | dateL : 'YYYY-MM-DD HH:mm:ss'//</td>
|
|
<td width="15%">
|
|
<toggle-admin has-admin-role="u.has_admin_role == 1" user-id="//u.user_id//"></toggle-admin>
|
|
</td>
|
|
<td width="20%">
|
|
<a href="javascript:void(0)" ng-click="vm.confirmToDelete(u.user_id, u.username)"><span class="glyphicon glyphicon-trash"></span></a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-4 col-md-12 well well-sm well-custom">
|
|
<div class="col-md-offset-10">//vm.users ? vm.users.length : 0// items</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|