]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/follows/following-list/following-list.component.html
allow sorting notifications
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / follows / following-list / following-list.component.html
CommitLineData
ed5bb517
K
1<h1>
2 <my-global-icon iconName="following" aria-hidden="true"></my-global-icon>
3 <ng-container i18n>Instances you follow</ng-container>
4</h1>
5
ab998f7b 6<p-table
b8cf27c0 7 [value]="following" [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}'}} hosts"
04e0fc48 11>
b014b6b9
C
12 <ng-template pTemplate="caption">
13 <div class="caption">
25a42e29 14 <div class="ml-auto has-feedback has-clear">
b014b6b9
C
15 <input
16 type="text" name="table-filter" id="table-filter" i18n-placeholder placeholder="Filter..."
be27ef3b 17 (keyup)="onSearch($event)"
b014b6b9 18 >
25a42e29
RK
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>
b014b6b9 21 </div>
bb152476 22 <a class="ml-2 follow-button" (click)="addDomainsToFollow()" (key.enter)="addDomainsToFollow()">
ea7337cf 23 <my-global-icon iconName="following" aria-hidden="true"></my-global-icon>
bb152476
RK
24 <ng-container i18n>Follow domain</ng-container>
25 </a>
b014b6b9
C
26 </div>
27 </ng-template>
28
ab998f7b
C
29 <ng-template pTemplate="header">
30 <tr>
b1d40cff 31 <th i18n>Host</th>
68d19a0a 32 <th style="width: 100px;" i18n pSortableColumn="state">State <p-sortIcon field="state"></p-sortIcon></th>
df4c603d 33 <th style="width: 150px;" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th>
68d19a0a 34 <th style="width: 160px;" i18n pSortableColumn="redundancyAllowed">Redundancy allowed <p-sortIcon field="redundancyAllowed"></p-sortIcon></th>
5ff52366 35 <th style="width: 150px;"></th>
ab998f7b
C
36 </tr>
37 </ng-template>
38
39 <ng-template pTemplate="body" let-follow>
40 <tr>
b8cf27c0
RK
41 <td>
42 <a [href]="'https://' + follow.following.host" i18n-title title="Open instance in a new tab" target="_blank" rel="noopener noreferrer">
43 {{ follow.following.host }}
44 <span class="glyphicon glyphicon-new-window"></span>
45 </a>
46 </td>
3827c3b3
C
47
48 <td *ngIf="follow.state === 'accepted'" i18n>Accepted</td>
49 <td *ngIf="follow.state === 'pending'" i18n>Pending</td>
50
7f979fd8 51 <td>{{ follow.createdAt | date: 'short' }}</td>
c48e82b5
C
52 <td>
53 <my-redundancy-checkbox
54 [host]="follow.following.host" [redundancyAllowed]="follow.following.hostRedundancyAllowed"
55 ></my-redundancy-checkbox>
56 </td>
ab998f7b
C
57 <td class="action-cell">
58 <my-delete-button (click)="removeFollowing(follow)"></my-delete-button>
59 </td>
60 </tr>
61 </ng-template>
d3840613
RK
62
63 <ng-template pTemplate="emptymessage">
64 <tr>
65 <td colspan="6">
22839330 66 <div class="no-results">
d3840613 67 <ng-container *ngIf="search" i18n>No host found matching current filters.</ng-container>
b8cf27c0 68 <ng-container *ngIf="!search" i18n>Your instance is not following anyone.</ng-container>
d3840613
RK
69 </div>
70 </td>
71 </tr>
72 </ng-template>
ab998f7b 73</p-table>
bb152476 74
b8cf27c0
RK
75<my-batch-domains-modal #batchDomainsModal i18n-action action="Follow domains" (domains)="addFollowing($event)">
76 <ng-container ngProjectAs="warning">
77 <div i18n *ngIf="httpEnabled() === false" class="alert alert-warning">
78 It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.
79 </div>
80 </ng-container>
81</my-batch-domains-modal>