aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/admin/friends/friend-list/friend-list.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/admin/friends/friend-list/friend-list.component.html')
-rw-r--r--client/src/app/admin/friends/friend-list/friend-list.component.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/client/src/app/admin/friends/friend-list/friend-list.component.html b/client/src/app/admin/friends/friend-list/friend-list.component.html
index 1f3789265..7f1709d94 100644
--- a/client/src/app/admin/friends/friend-list/friend-list.component.html
+++ b/client/src/app/admin/friends/friend-list/friend-list.component.html
@@ -3,13 +3,19 @@
3<table class="table table-hover"> 3<table class="table table-hover">
4 <thead> 4 <thead>
5 <tr> 5 <tr>
6 <th>ID</th>
6 <th>Url</th> 7 <th>Url</th>
8 <th>Score</th>
9 <th>Created Date</th>
7 </tr> 10 </tr>
8 </thead> 11 </thead>
9 12
10 <tbody> 13 <tbody>
11 <tr *ngFor="let friend of friends"> 14 <tr *ngFor="let friend of friends">
15 <td>{{ friend.id }}</td>
12 <td>{{ friend.url }}</td> 16 <td>{{ friend.url }}</td>
17 <td>{{ friend.score }}</td>
18 <td>{{ friend.createdDate }}</td>
13 </tr> 19 </tr>
14 </tbody> 20 </tbody>
15</table> 21</table>