aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/moderation/instance-blocklist/instance-server-blocklist.component.html
blob: f634ba83406290a28b0433df18bd7c39dc97b065 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<p-table
  [value]="blockedServers" [lazy]="true" [paginator]="true" [totalRecords]="totalRecords" [rows]="rowsPerPage"
  [sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)"
>

  <ng-template pTemplate="header">
    <tr>
      <th i18n>Instance</th>
      <th i18n pSortableColumn="createdAt">Muted at <p-sortIcon field="createdAt"></p-sortIcon></th>
      <th></th>
    </tr>
  </ng-template>

  <ng-template pTemplate="body" let-serverBlock>
    <tr>
      <td>{{ serverBlock.blockedServer.host }}</td>
      <td>{{ serverBlock.createdAt }}</td>
      <td class="action-cell">
        <button class="unblock-button" (click)="unblockServer(serverBlock)" i18n>Unmute</button>
      </td>
    </tr>
  </ng-template>
</p-table>