|
|
|
@ -7,9 +7,12 @@
|
|
|
|
|
<table class="table table-striped table-hover table-responsive table-condensed table-usermanagement">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th >
|
|
|
|
|
<th style="width:1%">
|
|
|
|
|
<a>
|
|
|
|
|
<input type="checkbox" ng-checked="checkAll" (change)="checkAllBoxes()">
|
|
|
|
|
<td class="checkbox" data-label="Select:">
|
|
|
|
|
<input id="all" type="checkbox" ng-checked="checkAll" (change)="checkAllBoxes()">
|
|
|
|
|
<label for="all"></label>
|
|
|
|
|
</td>
|
|
|
|
|
</a>
|
|
|
|
|
</th>
|
|
|
|
|
<th (click)="setOrder('u.userName')">
|
|
|
|
@ -57,8 +60,9 @@
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr *ngFor="let u of users | orderBy: order : reverse : 'case-insensitive'">
|
|
|
|
|
<td class="td-labelled" data-label="Select:">
|
|
|
|
|
<input type="checkbox" [(ngModel)]="u.checked">
|
|
|
|
|
<td class="checkbox" data-label="Select:">
|
|
|
|
|
<input id="{{u.id}}" type="checkbox" [(ngModel)]="u.checked">
|
|
|
|
|
<label for="{{u.id}}"></label>
|
|
|
|
|
</td>
|
|
|
|
|
<td class="td-labelled" data-label="Username:">
|
|
|
|
|
{{u.userName}}
|
|
|
|
@ -92,7 +96,3 @@
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|