14 lines
399 B
HTML
14 lines
399 B
HTML
@if (isAdmin()) {
|
|
<main>
|
|
<mat-form-field>
|
|
<mat-label>User to impersonate</mat-label>
|
|
<mat-select (selectionChange)="onChange($event)"
|
|
[(value)]="impersonated">
|
|
<mat-option>{{getUsername()}}</mat-option>
|
|
@for (user of users; track user.id) {
|
|
<mat-option [value]="user.id">{{ user.name }}</mat-option>
|
|
}
|
|
</mat-select>
|
|
</mat-form-field>
|
|
</main>
|
|
} |