]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/admin/friends/friend-list/friend-list.component.html
Client: update to new form api
[github/Chocobozzz/PeerTube.git] / client / src / app / admin / friends / friend-list / friend-list.component.html
CommitLineData
dfe3ec6b
C
1<h3>Friends list</h3>
2
e2f555ca
C
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
e105c19c 21<a class="add-user btn btn-success pull-right" [routerLink]="['/admin/friends/add']">
e2f555ca
C
22 Make friends
23</a>