]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html
Migrate client to eslint
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / shared / recommendations / recommended-videos.component.html
CommitLineData
0f7407d9 1<div class="other-videos" [ngClass]="{ 'display-as-row': displayAsRow }">
45863288 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>
4f926722 11 <my-input-switch class="small" [(ngModel)]="autoPlayNextVideo" (ngModelChange)="switchAutoPlayNextVideo()"></my-input-switch>
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 16 <my-video-miniature
0f7407d9 17 [displayOptions]="displayOptions" [video]="video" [user]="userMiniature" [displayAsRow]="displayAsRow"
06ec4bdd
C
18 (videoBlocked)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()" (videoAccountMuted)="onVideoRemoved()"
19 actorImageSize="32"
20 >
45863288 21 </my-video-miniature>
5c20a455 22
9df52d66 23 <hr *ngIf="!playlist && i === 0 && length > 1" />
46788f21 24 </ng-container>
45863288 25 </ng-container>
7f5f4152 26</div>