processed.html 465 B

12345678910111213141516171819202122232425262728
  1. <div>
  2. <table class="table table-striped">
  3. <tr>
  4. <th>Inicio</th>
  5. <th>Fin</th>
  6. <th>Archivo Crudo</th>
  7. <th>Archivo Procesado</th>
  8. <th>Subir</th>
  9. </tr>
  10. <tr ng-repeat="v in videolist">
  11. <td>
  12. {{::v.start_time}}
  13. </td>
  14. <td>
  15. {{::v.end_time}}
  16. </td>
  17. <td>
  18. {{::v.in_fname.split("/").slice(-1)[0]}}
  19. </td>
  20. <td>
  21. {{::v.out_fname.split("/").slice(-1)[0]}}
  22. </td>
  23. <td>
  24. <a ng-href="/upload/{{v._id}}">subir</a>
  25. </td>
  26. </tr>
  27. </table>
  28. </div>