| 123456789101112131415161718192021222324 |
- <div>
- <table class="table table-striped">
- <tr>
- <th>Inicio</th>
- <th>Fin</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.video}}
- </td>
- <td>
- <a ng-href="http://youtube.com/watch?v={{v.yt}}" target="_blank">{{v.yt}}</a>
- </td>
- </tr>
- </table>
- </div>
|