diff options
Diffstat (limited to 'client/src/app/admin')
-rw-r--r-- | client/src/app/admin/users/user-list/user-list.component.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/app/admin/users/user-list/user-list.component.html b/client/src/app/admin/users/user-list/user-list.component.html index 2ef9ea0e0..328b1be77 100644 --- a/client/src/app/admin/users/user-list/user-list.component.html +++ b/client/src/app/admin/users/user-list/user-list.component.html | |||
@@ -5,6 +5,7 @@ | |||
5 | <tr> | 5 | <tr> |
6 | <th class="table-column-id">ID</th> | 6 | <th class="table-column-id">ID</th> |
7 | <th>Username</th> | 7 | <th>Username</th> |
8 | <th>Created Date</th> | ||
8 | <th class="text-right">Remove</th> | 9 | <th class="text-right">Remove</th> |
9 | </tr> | 10 | </tr> |
10 | </thead> | 11 | </thead> |
@@ -13,6 +14,7 @@ | |||
13 | <tr *ngFor="let user of users"> | 14 | <tr *ngFor="let user of users"> |
14 | <td>{{ user.id }}</td> | 15 | <td>{{ user.id }}</td> |
15 | <td>{{ user.username }}</td> | 16 | <td>{{ user.username }}</td> |
17 | <td>{{ user.createdDate | date: 'medium' }}</td> | ||
16 | <td class="text-right"> | 18 | <td class="text-right"> |
17 | <span class="glyphicon glyphicon-remove" *ngIf="!user.isAdmin()" (click)="removeUser(user)"></span> | 19 | <span class="glyphicon glyphicon-remove" *ngIf="!user.isAdmin()" (click)="removeUser(user)"></span> |
18 | </td> | 20 | </td> |