aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+admin/follows/followers-list/followers-list.component.html
blob: 85d2a2cf647838fd20949dbbb2a072e0c6f91634 (plain) (tree)
1
2
3
4


                                                                                                         
 





















                                                                                              
<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>