]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/video/abstract-video-list.html
Changelog typos
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video / abstract-video-list.html
CommitLineData
3a0fb65c 1<div class="margin-content">
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
c8487f3f 9 <my-feed *ngIf="titlePage" [syndicationItems]="syndicationItems"></my-feed>
017c3dca
C
10
11 <div class="moderation-block" *ngIf="displayModerationBlock">
12 <my-peertube-checkbox
13 (change)="toggleModerationDisplay()"
3a0fb65c 14 inputName="display-unlisted-private" i18n-labelText labelText="Display unlisted and private videos"
017c3dca
C
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
ad453580 22 myInfiniteScroller (nearOfBottom)="onNearOfBottom()" [autoInit]="true" [dataObservable]="onDataSubject.asObservable()"
489290b8 23 class="videos"
bddab65a 24 >
34c7f429
C
25 <ng-container *ngFor="let video of videos; trackBy: videoById;">
26 <div class="date-title" *ngIf="getCurrentGroupedDateLabel(video)">
27 {{ getCurrentGroupedDateLabel(video) }}
28 </div>
29
34c7f429
C
30 <my-video-miniature
31 [video]="video" [user]="user" [ownerDisplayType]="ownerDisplayType"
32 [displayVideoActions]="displayVideoActions" [displayOptions]="displayOptions"
33 (videoBlacklisted)="removeVideoFromArray(video)" (videoRemoved)="removeVideoFromArray(video)"
34 >
35 </my-video-miniature>
36 </ng-container>
c30745f3 37 </div>
32294074 38</div>