]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/moderation/instance-blocklist/instance-account-blocklist.component.html
Increase rows per page, add reporter muting for abuse list
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / moderation / instance-blocklist / instance-account-blocklist.component.html
CommitLineData
65b21c96
C
1<p-table
2 [value]="blockedAccounts" [lazy]="true" [paginator]="true" [totalRecords]="totalRecords" [rows]="rowsPerPage"
3 [sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)"
2bc9bd08 4 [showCurrentPageReport]="true" i18n-currentPageReportTemplate
45c14ae1 5 currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} muted accounts"
65b21c96
C
6>
7
8 <ng-template pTemplate="header">
9 <tr>
10 <th i18n>Account</th>
9b4241e3 11 <th style="width: 190px;" i18n pSortableColumn="createdAt">Muted at <p-sortIcon field="createdAt"></p-sortIcon></th>
68d19a0a 12 <th style="width: 100px;"></th> <!-- column for action buttons -->
65b21c96
C
13 </tr>
14 </ng-template>
15
16 <ng-template pTemplate="body" let-accountBlock>
17 <tr>
18 <td>{{ accountBlock.blockedAccount.nameWithHost }}</td>
19 <td>{{ accountBlock.createdAt }}</td>
20 <td class="action-cell">
21 <button class="unblock-button" (click)="unblockAccount(accountBlock)" i18n>Unmute</button>
22 </td>
23 </tr>
24 </ng-template>
25</p-table>