Implement user requests autorizations in the client side
[oweals/peertube.git] / client / angular / videos / components / list / videos-list.component.html
1 <div *ngFor="#video of videos" class="video">
2   <div>
3     <a [routerLink]="['VideosWatch', { id: video.id }]" class="video_name">{{ video.name }}</a>
4     <span class="video_pod_url">{{ video.podUrl }}</span>
5     <span *ngIf="video.isLocal === true && user && video.author === user.username" (click)="removeVideo(video.id)" class="video_remove glyphicon glyphicon-remove"></span>
6   </div>
7
8   <div class="video_description">
9     {{ video.description }}
10   </div>
11 </div>