uploadList.html 459 B

12345678910111213141516171819202122232425262728
  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">{{::v.yt}}</a>
  25. </td>
  26. </tr>
  27. </table>
  28. </div>