]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/video/abstract-video-list.html
add quarantine videos feature (#1637)
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video / abstract-video-list.html
CommitLineData
0626e7af 1<div [ngClass]="{ 'margin-content': marginContent }">
017c3dca
C
2 <div class="videos-header">
3 <div *ngIf="titlePage" class="title-page title-page-single">
9b4b15f9
AB
4 <div placement="bottom" [ngbTooltip]="titleTooltip" container="body">
5 {{ titlePage }}
6 </div>
017c3dca 7 </div>
9b4b15f9 8
c199c427 9 <my-feed [syndicationItems]="syndicationItems"></my-feed>
017c3dca
C
10
11 <div class="moderation-block" *ngIf="displayModerationBlock">
12 <my-peertube-checkbox
13 (change)="toggleModerationDisplay()"
14 inputName="display-unlisted-private" i18n-labelText labelText="Display unlisted and private videos"
15 >
16 </my-peertube-checkbox>
17 </div>
c30745f3 18 </div>
cf20596c 19
2d3741d6 20 <div class="no-results" i18n *ngIf="pagination.totalItems === 0">No results.</div>
c30745f3 21 <div
0cd4344f 22 myInfiniteScroller
a8ecc6f6 23 [pageHeight]="pageHeight" [firstLoadedPage]="firstLoadedPage"
0cd4344f 24 (nearOfTop)="onNearOfTop()" (nearOfBottom)="onNearOfBottom()" (pageChanged)="onPageChanged($event)"
1ff8d7d6 25 class="videos" #videosElement
bddab65a 26 >
89724816
C
27 <div *ngFor="let videos of videoPages; trackBy: pageByVideoId" class="videos-page">
28 <my-video-miniature *ngFor="let video of videos; trackBy: videoById" [video]="video" [user]="user" [ownerDisplayType]="ownerDisplayType"></my-video-miniature>
0cd4344f 29 </div>
c30745f3 30 </div>
32294074 31</div>