]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/video-list/video-list.component.html
Use async/await in lib and initializers
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / video-list / video-list.component.html
CommitLineData
897ec54d
C
1<div class="row">
2 <div class="content-padding">
3 <div class="videos-info">
4 <div class="col-md-9 col-xs-5 videos-total-results">
5 <span *ngIf="pagination.totalItems !== null">{{ pagination.totalItems }} videos</span>
a64668c0 6
897ec54d
C
7 <my-loader [loading]="loading | async"></my-loader>
8 </div>
a64668c0 9
897ec54d
C
10 <my-video-sort class="col-md-3 col-xs-7" [currentSort]="sort" (sort)="onSort($event)"></my-video-sort>
11 </div>
12 </div>
cf20596c
C
13</div>
14
897ec54d
C
15<div class="content-padding videos-miniatures">
16 <div class="no-video" *ngIf="isThereNoVideo()">There is no video.</div>
32294074 17
bddab65a
C
18 <my-video-miniature
19 class="ng-animate"
df98563e 20 *ngFor="let video of videos" [video]="video" [user]="user" [currentSort]="sort"
bddab65a 21 >
32294074
C
22 </my-video-miniature>
23</div>
24
efbf0ed7 25<pagination *ngIf="pagination.totalItems !== null && pagination.totalItems !== 0"
0629423c 26 [totalItems]="pagination.totalItems" [itemsPerPage]="pagination.itemsPerPage" [maxSize]="6" [boundaryLinks]="true" [rotate]="false"
bddab65a 27 [(ngModel)]="pagination.currentPage" (pageChanged)="onPageChanged($event)"
32294074 28></pagination>