1
0
Fork 0
peertube/client/src/app/+admin/follows/following-list/following-list.component.html

33 lines
1.0 KiB
HTML
Raw Normal View History

2018-02-23 13:36:16 +00:00
<p-table
[value]="following" [lazy]="true" [paginator]="true" [totalRecords]="totalRecords" [rows]="rowsPerPage"
[sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)"
2017-12-08 09:41:49 +00:00
>
2018-02-23 13:36:16 +00:00
<ng-template pTemplate="header">
<tr>
2018-06-04 14:21:17 +00:00
<th i18n style="width: 60px">ID</th>
<th i18n>Host</th>
<th i18n>State</th>
<th i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th>
2018-09-11 14:27:07 +00:00
<th i18n>Redundancy allowed</th>
2018-02-23 13:36:16 +00:00
<th></th>
</tr>
</ng-template>
<ng-template pTemplate="body" let-follow>
<tr>
<td>{{ follow.id }}</td>
<td>{{ follow.following.host }}</td>
<td>{{ follow.state }}</td>
<td>{{ follow.createdAt }}</td>
2018-09-11 14:27:07 +00:00
<td>
<my-redundancy-checkbox
[host]="follow.following.host" [redundancyAllowed]="follow.following.hostRedundancyAllowed"
></my-redundancy-checkbox>
</td>
2018-02-23 13:36:16 +00:00
<td class="action-cell">
<my-delete-button (click)="removeFollowing(follow)"></my-delete-button>
</td>
</tr>
</ng-template>
</p-table>