aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/follows/followers-list/followers-list.component.html
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-11-29 11:16:43 +0100
committerChocobozzz <me@florianbigard.com>2019-11-29 11:16:43 +0100
commitcb5ce4cb13095dbea6e5f05b96eaa42ffccf0716 (patch)
treefbfcb2b23b78a7dc464df22c166bee34b5b8bcb0 /client/src/app/+admin/follows/followers-list/followers-list.component.html
parent97ecddae104f4013d261f0e9645e8b319ff0f1a6 (diff)
downloadPeerTube-cb5ce4cb13095dbea6e5f05b96eaa42ffccf0716.tar.gz
PeerTube-cb5ce4cb13095dbea6e5f05b96eaa42ffccf0716.tar.zst
PeerTube-cb5ce4cb13095dbea6e5f05b96eaa42ffccf0716.zip
Add more filters to admin follows table
Diffstat (limited to 'client/src/app/+admin/follows/followers-list/followers-list.component.html')
-rw-r--r--client/src/app/+admin/follows/followers-list/followers-list.component.html6
1 files changed, 2 insertions, 4 deletions
diff --git a/client/src/app/+admin/follows/followers-list/followers-list.component.html b/client/src/app/+admin/follows/followers-list/followers-list.component.html
index 7d5711926..6b5f3b450 100644
--- a/client/src/app/+admin/follows/followers-list/followers-list.component.html
+++ b/client/src/app/+admin/follows/followers-list/followers-list.component.html
@@ -13,10 +13,9 @@
13 13
14 <ng-template pTemplate="header"> 14 <ng-template pTemplate="header">
15 <tr> 15 <tr>
16 <th i18n style="width: 60px">ID</th>
17 <th i18n>Follower handle</th> 16 <th i18n>Follower handle</th>
18 <th i18n>State</th> 17 <th i18n pSortableColumn="state">State <p-sortIcon field="state"></p-sortIcon></th>
19 <th i18n>Score</th> 18 <th i18n pSortableColumn="score">Score <p-sortIcon field="score"></p-sortIcon></th>
20 <th i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> 19 <th i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th>
21 <th></th> 20 <th></th>
22 </tr> 21 </tr>
@@ -24,7 +23,6 @@
24 23
25 <ng-template pTemplate="body" let-follow> 24 <ng-template pTemplate="body" let-follow>
26 <tr> 25 <tr>
27 <td>{{ follow.id }}</td>
28 <td><a [href]="follow.follower.url" target="_blank" rel="noopener noreferrer">{{ follow.follower.name + '@' + follow.follower.host }}</a></td> 26 <td><a [href]="follow.follower.url" target="_blank" rel="noopener noreferrer">{{ follow.follower.name + '@' + follow.follower.host }}</a></td>
29 27
30 <td *ngIf="follow.state === 'accepted'" i18n>Accepted</td> 28 <td *ngIf="follow.state === 'accepted'" i18n>Accepted</td>