]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/admin/users/user-list/user-list.component.html
Client: add basic aot support
[github/Chocobozzz/PeerTube.git] / client / src / app / admin / users / user-list / user-list.component.html
index fa7f71864e53deb81e0b4cddd6be23d3a56932ba..36193d119c162b2847629f0c2a0477f642bc5d24 100644 (file)
@@ -3,8 +3,9 @@
 <table class="table table-hover">
   <thead>
     <tr>
-      <th>Id</th>
+      <th class="table-column-id">ID</th>
       <th>Username</th>
+      <th>Created Date</th>
       <th class="text-right">Remove</th>
     </tr>
   </thead>
@@ -13,6 +14,7 @@
     <tr *ngFor="let user of users">
       <td>{{ user.id }}</td>
       <td>{{ user.username }}</td>
+      <td>{{ user.createdAt | date: 'medium' }}</td>
       <td class="text-right">
         <span class="glyphicon glyphicon-remove" *ngIf="!user.isAdmin()" (click)="removeUser(user)"></span>
       </td>