uploadList.html 377 B

123456789101112131415161718192021222324
  1. <div>
  2. <table class="table table-striped">
  3. <tr>
  4. <th>Inicio</th>
  5. <th>Fin</th>
  6. <th>Archivo</th>
  7. <th>Link</th>
  8. </tr>
  9. <tr ng-repeat="v in videolist">
  10. <td>
  11. {{v.enqueued_at}}
  12. </td>
  13. <td>
  14. {{v.finished_at}}
  15. </td>
  16. <td>
  17. {{v.video}}
  18. </td>
  19. <td>
  20. <a ng-href="http://youtube.com/watch?v={{v.yt}}" target="_blank">{{v.yt}}</a>
  21. </td>
  22. </tr>
  23. </table>
  24. </div>