|
|
|
@ -4,7 +4,7 @@
|
|
|
|
|
|
|
|
|
|
<button type="button" class="btn btn-success-outline" [routerLink]="['/usermanagement/add']">Add User</button>
|
|
|
|
|
<!-- Table -->
|
|
|
|
|
<table class="table table-striped table-hover table-responsive table-condensed">
|
|
|
|
|
<table class="table table-striped table-hover table-responsive table-condensed table-usermanagement">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>
|
|
|
|
@ -44,28 +44,28 @@
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr *ngFor="let u of users">
|
|
|
|
|
<td>
|
|
|
|
|
<td class="td-labelled" data-label="Select:">
|
|
|
|
|
<input type="checkbox" [(ngModel)]="u.checked">
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<td class="td-labelled" data-label="Username:">
|
|
|
|
|
{{u.userName}}
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<td class="td-labelled" data-label="Alias:">
|
|
|
|
|
{{u.alias}}
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<td class="td-labelled" data-label="Email:">
|
|
|
|
|
{{u.emailAddress}}
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<td class="td-labelled" data-label="Roles:">
|
|
|
|
|
<div *ngFor="let claim of u.claims">
|
|
|
|
|
<span *ngIf="claim.enabled">{{claim.value}}</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<td class="td-labelled" data-label="Last Logged In:">
|
|
|
|
|
{{u.lastLoggedIn | date: 'short'}}
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<td class="td-labelled" data-label="User Type:">
|
|
|
|
|
<span *ngIf="u.userType === 1">Local User</span>
|
|
|
|
|
<span *ngIf="u.userType === 2">Plex User</span>
|
|
|
|
|
<span *ngIf="u.userType === 3">Emby User</span>
|
|
|
|
|