2016-03-14 07:50:19 -05:00
|
|
|
<div *ngFor="#video of videos" class="video">
|
|
|
|
<div>
|
2016-03-18 10:28:09 -05:00
|
|
|
<a [routerLink]="['VideosWatch', { id: video.id }]" class="video_name">{{ video.name }}</a>
|
2016-03-14 07:50:19 -05:00
|
|
|
<span class="video_pod_url">{{ video.podUrl }}</span>
|
2016-03-18 10:28:09 -05:00
|
|
|
<span *ngIf="video.isLocal === true" (click)="removeVideo(video.id)" class="video_remove glyphicon glyphicon-remove"></span>
|
2016-03-14 07:50:19 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="video_description">
|
|
|
|
{{ video.description }}
|
|
|
|
</div>
|
|
|
|
</div>
|