]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/follows/followers-list/followers-list.component.html
Add follow tests
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / follows / followers-list / followers-list.component.html
CommitLineData
51548b31
C
1<div class="row">
2 <div class="content-padding">
3 <h3>Followers list</h3>
4
5 <p-dataTable
6 [value]="followers" [lazy]="true" [paginator]="true" [totalRecords]="totalRecords" [rows]="rowsPerPage"
7 sortField="createdAt" (onLazyLoad)="loadLazy($event)"
8 >
9 <p-column field="id" header="ID"></p-column>
7e9334c3 10 <p-column field="follower.host" header="Host"></p-column>
51548b31 11 <p-column field="email" header="Email"></p-column>
7e9334c3 12 <p-column field="follower.score" header="Score"></p-column>
0f91ae62 13 <p-column field="state" header="State"></p-column>
51548b31
C
14 <p-column field="createdAt" header="Created date" [sortable]="true"></p-column>
15 </p-dataTable>
16 </div>
17</div>