]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/recommendations/recommended-videos.component.html
Reorganize client shared modules
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / recommendations / recommended-videos.component.html
CommitLineData
45863288
C
1<div class="other-videos">
2 <ng-container *ngIf="hasVideos$ | async">
5def76eb 3 <div class="title-page-container">
c9e3565d 4 <h2 i18n class="title-page title-page-single">
d816f3a0 5 Other videos
c9e3565d 6 </h2>
5def76eb
RK
7 <div *ngIf="!playlist" class="title-page-autoplay"
8 [ngbTooltip]="autoPlayNextVideoTooltip" placement="bottom-right auto"
9 >
14571f19 10 <span i18n>AUTOPLAY</span>
d3217560 11 <p-inputSwitch class="small" [(ngModel)]="autoPlayNextVideo" (ngModelChange)="switchAutoPlayNextVideo()"></p-inputSwitch>
d816f3a0 12 </div>
7f5f4152
BJ
13 </div>
14
46788f21 15 <ng-container *ngFor="let video of (videos$ | async); let i = index; let length = count">
5c20a455
C
16 <my-video-miniature
17 [displayOptions]="displayOptions" [video]="video" [user]="userMiniature"
46788f21 18 (videoBlocked)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()">
45863288 19 </my-video-miniature>
5c20a455 20
bee29df8 21 <hr *ngIf="!playlist && i == 0 && length > 1" />
46788f21 22 </ng-container>
45863288 23 </ng-container>
7f5f4152 24</div>