]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/angular/videos/components/list/videos-list.component.html
Write something if there is no video
[github/Chocobozzz/PeerTube.git] / client / angular / videos / components / list / videos-list.component.html
1 <div *ngIf="videos.length === 0">There is no video.</div>
2 <div *ngFor="#video of videos" class="video">
3 <div>
4 <a [routerLink]="['VideosWatch', { id: video.id }]" class="video_name">{{ video.name }}</a>
5 <span class="video_pod_url">{{ video.podUrl }}</span>
6 <span *ngIf="video.isLocal === true && user && video.author === user.username" (click)="removeVideo(video.id)" class="video_remove glyphicon glyphicon-remove"></span>
7 </div>
8
9 <div class="video_description">
10 {{ video.description }}
11 </div>
12 </div>