]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/recommendations/recommended-videos.component.html
match margin of abstract-video-list and sub-menu's fixed margin
[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">
d816f3a0
RK
4 <div i18n class="title-page title-page-single">
5 Other videos
6 </div>
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
bee29df8 15 <div *ngFor="let video of (videos$ | async); let i = index; let length = count">
5baee5fc 16 <my-video-miniature [displayOptions]="displayOptions" [video]="video" [user]="user" (videoBlocked)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()">
45863288 17 </my-video-miniature>
bee29df8
RK
18
19 <hr *ngIf="!playlist && i == 0 && length > 1" />
01fe5bd7 20 </div>
45863288 21 </ng-container>
7f5f4152 22</div>