aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/admin/friends/friend-list/friend-list.component.html
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-08-12 18:22:58 +0200
committerChocobozzz <florian.bigard@gmail.com>2016-08-12 18:22:58 +0200
commite2f555cab7563cd74fa790cea5fc65f2e31b0dc0 (patch)
tree73b68f28c3d8b4521612e5c6de120d2d2614dd70 /client/src/app/admin/friends/friend-list/friend-list.component.html
parentc323efb9cdc6a605242d112ac0c9db9f67eabaad (diff)
downloadPeerTube-e2f555cab7563cd74fa790cea5fc65f2e31b0dc0.tar.gz
PeerTube-e2f555cab7563cd74fa790cea5fc65f2e31b0dc0.tar.zst
PeerTube-e2f555cab7563cd74fa790cea5fc65f2e31b0dc0.zip
Client: add friends page
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.html21
1 files changed, 21 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
new file mode 100644
index 000000000..860bd2c07
--- /dev/null
+++ b/client/src/app/admin/friends/friend-list/friend-list.component.html
@@ -0,0 +1,21 @@
1<table class="table table-hover">
2 <thead>
3 <tr>
4 <th>Url</th>
5 </tr>
6 </thead>
7
8 <tbody>
9 <tr *ngFor="let friend of friends">
10 <td>{{ friend.url }}</td>
11 </tr>
12 </tbody>
13</table>
14
15<a class="add-user btn btn-danger pull-left" (click)="quitFriends()">
16 Quit friends
17</a>
18
19<a class="add-user btn btn-success pull-right" (click)="makeFriends()">
20 Make friends
21</a>