aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/follows/followers-list/followers-list.component.html
blob: 1a6ed616a6cd21c0bbfb97e9866e0396219bef1f (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
24
25
26
<p-table
  [value]="followers" [lazy]="true" [paginator]="true" [totalRecords]="totalRecords" [rows]="rowsPerPage"
  [sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)"
>
  <ng-template pTemplate="header">
    <tr>
      <th i18n style="width: 60px">ID</th>
      <th i18n>Score</th>
      <th i18n>Name</th>
      <th i18n>Host</th>
      <th i18n>State</th>
      <th i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th>
    </tr>
  </ng-template>

  <ng-template pTemplate="body" let-follow>
    <tr>
      <td>{{ follow.id }}</td>
      <td>{{ follow.score }}</td>
      <td>{{ follow.follower.name }}</td>
      <td>{{ follow.follower.host }}</td>
      <td>{{ follow.state }}</td>
      <td>{{ follow.createdAt }}</td>
    </tr>
  </ng-template>
</p-table>