| 1234567891011121314151617181920212223242526272829 |
- <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">Link</a>
- <button class="btn" ngclipboard data-clipboard-text="{{v.yt}}">Copiar</button>
- </td>
- </tr>
- </table>
- </div>
|