]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/admin/friends/friend-list/friend-list.component.html
Client: add ID, score and created date to the friends list
[github/Chocobozzz/PeerTube.git] / client / src / app / admin / friends / friend-list / friend-list.component.html
index 1f3789265a68b6d8486d986b449811b589b83089..7f1709d94cc462879e59802228e38c25349a53cd 100644 (file)
@@ -3,13 +3,19 @@
 <table class="table table-hover">
   <thead>
     <tr>
+      <th>ID</th>
       <th>Url</th>
+      <th>Score</th>
+      <th>Created Date</th>
     </tr>
   </thead>
 
   <tbody>
     <tr *ngFor="let friend of friends">
+      <td>{{ friend.id }}</td>
       <td>{{ friend.url }}</td>
+      <td>{{ friend.score }}</td>
+      <td>{{ friend.createdDate }}</td>
     </tr>
   </tbody>
 </table>