]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-moderation/server-blocklist.component.html
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-moderation / server-blocklist.component.html
CommitLineData
ed5bb517 1<h1>
f4a2dc50 2 <my-global-icon iconName="peertube-x" aria-hidden="true"></my-global-icon>
ed5bb517
K
3 <ng-container i18n>Muted servers</ng-container>
4</h1>
5
65b21c96 6<p-table
0667dbaf
C
7 [value]="blockedServers" [paginator]="totalRecords > 0" [totalRecords]="totalRecords"
8 [rows]="rowsPerPage" [rowsPerPageOptions]="rowsPerPageOptions" [first]="pagination.start"
e6492b2d 9 [sortField]="sort.field" [sortOrder]="sort.order"
2e46eb97 10 [lazy]="true" (onLazyLoad)="loadLazy($event)" [lazyLoadOnInit]="false"
2bc9bd08 11 [showCurrentPageReport]="true" i18n-currentPageReportTemplate
45c14ae1 12 currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} muted instances"
65b21c96 13>
bb152476
RK
14 <ng-template pTemplate="caption">
15 <div class="caption">
9c1a88e3 16 <div class="left-buttons">
d0fbc9fd 17 <button class="peertube-create-button" (click)="addServersToBlock()" (key.enter)="addServersToBlock()">
9c1a88e3
C
18 <my-global-icon iconName="add" aria-hidden="true"></my-global-icon>
19 <ng-container i18n>Mute domain</ng-container>
d0fbc9fd 20 </button>
9c1a88e3
C
21 </div>
22
4c8749cb 23 <div class="ms-auto">
2e46eb97 24 <my-advanced-input-filter (search)="onSearch($event)"></my-advanced-input-filter>
e0a92917 25 </div>
bb152476
RK
26 </div>
27 </ng-template>
65b21c96
C
28
29 <ng-template pTemplate="header">
30 <tr>
e0436741 31 <th style="width: 150px;" i18n>Action</th> <!-- column for action buttons -->
e07c5516 32 <th i18n>Instance</th>
df4c603d 33 <th style="width: 150px;" i18n pSortableColumn="createdAt">Muted at <p-sortIcon field="createdAt"></p-sortIcon></th>
65b21c96
C
34 </tr>
35 </ng-template>
36
37 <ng-template pTemplate="body" let-serverBlock>
38 <tr>
30814423
K
39 <td class="action-cell">
40 <button class="unblock-button" (click)="unblockServer(serverBlock)" i18n>Unmute</button>
41 </td>
86521a67
RK
42 <td>
43 <a [href]="'https://' + serverBlock.blockedServer.host" i18n-title title="Open instance in a new tab" target="_blank" rel="noopener noreferrer">
44 {{ serverBlock.blockedServer.host }}
c2faa073 45 <my-global-icon iconName="external-link"></my-global-icon>
86521a67
RK
46 </a>
47 </td>
7f979fd8 48 <td>{{ serverBlock.createdAt | date: 'short' }}</td>
65b21c96
C
49 </tr>
50 </ng-template>
d3840613
RK
51
52 <ng-template pTemplate="emptymessage">
53 <tr>
4b70c278 54 <td myAutoColspan>
22839330 55 <div class="no-results">
d3840613
RK
56 <ng-container *ngIf="search" i18n>No server found matching current filters.</ng-container>
57 <ng-container *ngIf="!search" i18n>No server found.</ng-container>
58 </div>
59 </td>
60 </tr>
61 </ng-template>
65b21c96 62</p-table>
bb152476 63
b8cf27c0 64<my-batch-domains-modal #batchDomainsModal i18n-action action="Mute domains" (domains)="onDomainsToBlock($event)"></my-batch-domains-modal>