uploadList.html 535 B

1234567891011121314151617181920212223242526272829
  1. <div>
  2. <table class="table table-striped">
  3. <tr>
  4. <th>Inicio</th>
  5. <th>Fin</th>
  6. <th>Titulo</th>
  7. <th>Archivo</th>
  8. <th>Link</th>
  9. </tr>
  10. <tr ng-repeat="v in videolist">
  11. <td>
  12. {{::v.enqueued_at}}
  13. </td>
  14. <td>
  15. {{::v.finished_at}}
  16. </td>
  17. <td>
  18. {{::v.title}}
  19. </td>
  20. <td>
  21. {{::v.video.split("/").slice(-1)[0]}}
  22. </td>
  23. <td>
  24. <a ng-href="http://youtube.com/watch?v={{v.yt}}" target="_blank">Link</a>
  25. <button class="btn" ngclipboard data-clipboard-text="{{v.yt}}">Copiar</button>
  26. </td>
  27. </tr>
  28. </table>
  29. </div>