aboutsummaryrefslogtreecommitdiffhomepage
path: root/client
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
parent97ecddae104f4013d261f0e9645e8b319ff0f1a6 (diff)
downloadPeerTube-cb5ce4cb13095dbea6e5f05b96eaa42ffccf0716.tar.gz
PeerTube-cb5ce4cb13095dbea6e5f05b96eaa42ffccf0716.tar.zst
PeerTube-cb5ce4cb13095dbea6e5f05b96eaa42ffccf0716.zip
Add more filters to admin follows table
Diffstat (limited to 'client')
-rw-r--r--client/src/app/+admin/follows/followers-list/followers-list.component.html6
-rw-r--r--client/src/app/+admin/follows/following-list/following-list.component.html6
2 files changed, 4 insertions, 8 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>
diff --git a/client/src/app/+admin/follows/following-list/following-list.component.html b/client/src/app/+admin/follows/following-list/following-list.component.html
index 5bc8fbc2d..5a252eda9 100644
--- a/client/src/app/+admin/follows/following-list/following-list.component.html
+++ b/client/src/app/+admin/follows/following-list/following-list.component.html
@@ -15,18 +15,16 @@
15 15
16 <ng-template pTemplate="header"> 16 <ng-template pTemplate="header">
17 <tr> 17 <tr>
18 <th i18n style="width: 60px">ID</th>
19 <th i18n>Host</th> 18 <th i18n>Host</th>
20 <th i18n>State</th> 19 <th i18n pSortableColumn="state">State <p-sortIcon field="state"></p-sortIcon></th>
21 <th i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> 20 <th i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th>
22 <th i18n>Redundancy allowed</th> 21 <th i18n pSortableColumn="redundancyAllowed">Redundancy allowed <p-sortIcon field="redundancyAllowed"></p-sortIcon></th>
23 <th></th> 22 <th></th>
24 </tr> 23 </tr>
25 </ng-template> 24 </ng-template>
26 25
27 <ng-template pTemplate="body" let-follow> 26 <ng-template pTemplate="body" let-follow>
28 <tr> 27 <tr>
29 <td>{{ follow.id }}</td>
30 <td>{{ follow.following.host }}</td> 28 <td>{{ follow.following.host }}</td>
31 29
32 <td *ngIf="follow.state === 'accepted'" i18n>Accepted</td> 30 <td *ngIf="follow.state === 'accepted'" i18n>Accepted</td>