Added admin field in management page

This commit is contained in:
grata
2023-05-05 11:11:03 +02:00
parent 6f72e3e6e7
commit d072dca42c
2 changed files with 6 additions and 2 deletions

View File

@@ -13,15 +13,17 @@
<table>
<thead>
<tr>
<th>{{ translations.name }}</th>
<th>{{translations.username}}</th>
<th>{{ translations.username }}</th>
<th>{{translations.password}}</th>
<th>admin</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let user of users">
<td>{{ user.username }}</td>
<td>{{ user.password }}</td>
<td *ngIf="user.admin==false">No</td>
<td *ngIf="user.admin==true">Yes</td>
</tr>
</tbody>
</table>