]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/follows/followers-list/followers-list.component.html
Don't retry failed transaction for refresh
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / follows / followers-list / followers-list.component.html
CommitLineData
ed5bb517
K
1<h1>
2 <my-global-icon iconName="follower" aria-hidden="true"></my-global-icon>
3 <ng-container i18n>Instances following you</ng-container>
4</h1>
5
ab998f7b 6<p-table
b8cf27c0 7 [value]="followers" [lazy]="true" [paginator]="totalRecords > 0" [totalRecords]="totalRecords" [rows]="rowsPerPage" [rowsPerPageOptions]="rowsPerPageOptions"
1d26d05f 8 [sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)" (onPage)="onPage($event)"
b8cf27c0 9 [showCurrentPageReport]="true" i18n-currentPageReportTemplate
f66b8d12 10 currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} followers"
04e0fc48 11>
b014b6b9
C
12 <ng-template pTemplate="caption">
13 <div class="caption">
25a42e29
RK
14 <div class="ml-auto has-feedback has-clear">
15 <input
16 type="text" name="table-filter" id="table-filter" i18n-placeholder placeholder="Filter..."
17 (keyup)="onSearch($event)"
18 >
19 <a class="glyphicon glyphicon-remove-sign form-control-feedback form-control-clear" (click)="resetSearch()"></a>
20 <span class="sr-only" i18n>Clear filters</span>
21 </div>
b014b6b9
C
22 </div>
23 </ng-template>
24
ab998f7b
C
25 <ng-template pTemplate="header">
26 <tr>
30814423 27 <th style="width: 150px;">Actions</th>
0dc64777 28 <th i18n>Follower handle</th>
68d19a0a
RK
29 <th style="width: 100px;" i18n pSortableColumn="state">State <p-sortIcon field="state"></p-sortIcon></th>
30 <th style="width: 100px;" i18n pSortableColumn="score">Score <p-sortIcon field="score"></p-sortIcon></th>
df4c603d 31 <th style="width: 150px;" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th>
ab998f7b
C
32 </tr>
33 </ng-template>
34
35 <ng-template pTemplate="body" let-follow>
36 <tr>
30814423
K
37 <td class="action-cell">
38 <ng-container *ngIf="follow.state === 'pending'">
39 <my-button i18n-title title="Accept" icon="tick" (click)="acceptFollower(follow)"></my-button>
40 <my-button i18n-title title="Refuse" icon="cross" (click)="rejectFollower(follow)"></my-button>
41 </ng-container>
42
43 <my-delete-button label *ngIf="follow.state === 'accepted'" (click)="deleteFollower(follow)"></my-delete-button>
44 </td>
1d26d05f
RK
45 <td>
46 <a [href]="follow.follower.url" i18n-title title="Open actor page in a new tab" target="_blank" rel="noopener noreferrer">
47 {{ follow.follower.name + '@' + follow.follower.host }}
48 <span class="glyphicon glyphicon-new-window"></span>
49 </a>
50 </td>
3827c3b3 51
bc99dfe5
RK
52 <td *ngIf="follow.state === 'accepted'">
53 <span class="badge badge-green" i18n>Accepted</span>
54 </td>
55 <td *ngIf="follow.state === 'pending'">
56 <span class="badge badge-yellow" i18n>Pending</span>
57 </td>
3827c3b3 58
0dc64777 59 <td>{{ follow.score }}</td>
7f979fd8 60 <td>{{ follow.createdAt | date: 'short' }}</td>
ab998f7b
C
61 </tr>
62 </ng-template>
d3840613
RK
63
64 <ng-template pTemplate="emptymessage">
65 <tr>
66 <td colspan="6">
22839330 67 <div class="no-results">
d3840613
RK
68 <ng-container *ngIf="search" i18n>No follower found matching current filters.</ng-container>
69 <ng-container *ngIf="!search" i18n>Your instance doesn't have any follower.</ng-container>
70 </div>
71 </td>
72 </tr>
73 </ng-template>
ab998f7b 74</p-table>