]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-moderation/server-blocklist.component.html
Automatic colspan for tables
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-moderation / server-blocklist.component.html
1 <h1>
2 <my-global-icon iconName="peertube-x" aria-hidden="true"></my-global-icon>
3 <ng-container i18n>Muted servers</ng-container>
4 </h1>
5
6 <p-table
7 [value]="blockedServers" [paginator]="totalRecords > 0" [totalRecords]="totalRecords"
8 [rows]="rowsPerPage" [rowsPerPageOptions]="rowsPerPageOptions" [first]="pagination.start"
9 [sortField]="sort.field" [sortOrder]="sort.order"
10 [lazy]="true" (onLazyLoad)="loadLazy($event)" [lazyLoadOnInit]="false"
11 [showCurrentPageReport]="true" i18n-currentPageReportTemplate
12 currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} muted instances"
13 >
14 <ng-template pTemplate="caption">
15 <div class="caption">
16 <div class="left-buttons">
17 <button class="peertube-create-button" (click)="addServersToBlock()" (key.enter)="addServersToBlock()">
18 <my-global-icon iconName="add" aria-hidden="true"></my-global-icon>
19 <ng-container i18n>Mute domain</ng-container>
20 </button>
21 </div>
22
23 <div class="ms-auto">
24 <my-advanced-input-filter (search)="onSearch($event)"></my-advanced-input-filter>
25 </div>
26 </div>
27 </ng-template>
28
29 <ng-template pTemplate="header">
30 <tr>
31 <th style="width: 150px;" i18n>Action</th> <!-- column for action buttons -->
32 <th i18n>Instance</th>
33 <th style="width: 150px;" i18n pSortableColumn="createdAt">Muted at <p-sortIcon field="createdAt"></p-sortIcon></th>
34 </tr>
35 </ng-template>
36
37 <ng-template pTemplate="body" let-serverBlock>
38 <tr>
39 <td class="action-cell">
40 <button class="unblock-button" (click)="unblockServer(serverBlock)" i18n>Unmute</button>
41 </td>
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 }}
45 <my-global-icon iconName="external-link"></my-global-icon>
46 </a>
47 </td>
48 <td>{{ serverBlock.createdAt | date: 'short' }}</td>
49 </tr>
50 </ng-template>
51
52 <ng-template pTemplate="emptymessage">
53 <tr>
54 <td myAutoColspan>
55 <div class="no-results">
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>
62 </p-table>
63
64 <my-batch-domains-modal #batchDomainsModal i18n-action action="Mute domains" (domains)="onDomainsToBlock($event)"></my-batch-domains-modal>