]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/admin/friends/friend-list/friend-list.component.html
Client: add friends page
[github/Chocobozzz/PeerTube.git] / client / src / app / admin / friends / friend-list / friend-list.component.html
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>