]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/admin/friends/friend-list/friend-list.component.html
Client: add users list/friends list titles
[github/Chocobozzz/PeerTube.git] / client / src / app / admin / friends / friend-list / friend-list.component.html
1 <h3>Friends list</h3>
2
3 <table class="table table-hover">
4 <thead>
5 <tr>
6 <th>Url</th>
7 </tr>
8 </thead>
9
10 <tbody>
11 <tr *ngFor="let friend of friends">
12 <td>{{ friend.url }}</td>
13 </tr>
14 </tbody>
15 </table>
16
17 <a class="add-user btn btn-danger pull-left" (click)="quitFriends()">
18 Quit friends
19 </a>
20
21 <a class="add-user btn btn-success pull-right" (click)="makeFriends()">
22 Make friends
23 </a>