aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/follows/followers-list/followers-list.component.html
blob: 85d2a2cf647838fd20949dbbb2a072e0c6f91634 (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 style="width: 60px">ID</th>
      <th>Score</th>
      <th>Name</th>
      <th>Host</th>
      <th>State</th>
      <th 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>