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