| 12345678910111213141516171819202122232425262728 |
- <div>
- <table class="table table-striped">
- <tr>
- <th>Inicio</th>
- <th>Fin</th>
- <th>Titulo</th>
- <th>Archivo</th>
- <th>Link</th>
- </tr>
- <tr ng-repeat="v in videolist">
- <td>
- {{::v.enqueued_at}}
- </td>
- <td>
- {{::v.finished_at}}
- </td>
- <td>
- {{::v.title}}
- </td>
- <td>
- {{::v.video.split("/").slice(-1)[0]}}
- </td>
- <td>
- <a ng-href="http://youtube.com/watch?v={{v.yt}}" target="_blank">{{::v.yt}}</a>
- </td>
- </tr>
- </table>
- </div>
|