aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/recommendations/recommended-videos.component.html
blob: 1fb89f8b098fafcec3c44cc969d61d1bdbd7a725 (plain) (blame)
1
2
3
4
5
6
7
8
9
<div *ngIf="hasVideos$ | async" class="other-videos">
    <div i18n class="title-page title-page-single">
        Other videos
    </div>

    <div *ngFor="let video of (videos$ | async)">
        <my-video-miniature [video]="video" [user]="user" (videoBlacklisted)="onVideoRemoved()" (videoRemoved)="onVideoRemoved()"></my-video-miniature>
    </div>
</div>