diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-09-23 17:20:15 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-09-23 17:20:15 +0200 |
commit | b539c9b34c246eb7bfc4afea92ae095cb1c38e59 (patch) | |
tree | bd89628ecb0066a2f27675cf9bf5cfc05753928c /client/src/app/admin/users | |
parent | d74a0680f72021f82c2718cbf6c490a7715a9e35 (diff) | |
download | PeerTube-b539c9b34c246eb7bfc4afea92ae095cb1c38e59.tar.gz PeerTube-b539c9b34c246eb7bfc4afea92ae095cb1c38e59.tar.zst PeerTube-b539c9b34c246eb7bfc4afea92ae095cb1c38e59.zip |
Client: display created user date
Diffstat (limited to 'client/src/app/admin/users')
-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> |