]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/angular/videos/components/list/videos-list.component.html
Add typescript (and angular2) linter
[github/Chocobozzz/PeerTube.git] / client / angular / videos / components / list / videos-list.component.html
CommitLineData
dc8bc31b
C
1<div *ngFor="#video of videos" class="video">
2 <div>
2df82d42 3 <a [routerLink]="['VideosWatch', { id: video.id }]" class="video_name">{{ video.name }}</a>
dc8bc31b 4 <span class="video_pod_url">{{ video.podUrl }}</span>
2df82d42 5 <span *ngIf="video.isLocal === true" (click)="removeVideo(video.id)" class="video_remove glyphicon glyphicon-remove"></span>
dc8bc31b
C
6 </div>
7
8 <div class="video_description">
9 {{ video.description }}
10 </div>
11</div>