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

17 lines
635 B
HTML
Raw Normal View History

<div class="row">
<div class="content-padding">
<h3>Followers list</h3>
<p-dataTable
[value]="followers" [lazy]="true" [paginator]="true" [totalRecords]="totalRecords" [rows]="rowsPerPage"
sortField="createdAt" (onLazyLoad)="loadLazy($event)"
>
<p-column field="id" header="ID"></p-column>
2017-11-20 10:19:23 +00:00
<p-column field="follower.host" header="Host"></p-column>
<p-column field="follower.score" header="Score"></p-column>
2017-11-21 12:43:29 +00:00
<p-column field="state" header="State"></p-column>
<p-column field="createdAt" header="Created date" [sortable]="true"></p-column>
</p-dataTable>
</div>
</div>