raw.html 371 B

123456789101112131415161718192021222324252627
  1. <div>
  2. RAW
  3. <button class="btn">SUBIR</button>
  4. <table class="table table-striped">
  5. <tr>
  6. <th>Fecha</th>
  7. <th>Archivo</th>
  8. <th>Duracion</th>
  9. <th>Editar</th>
  10. </tr>
  11. <tr ng-repeat="r in rawlist">
  12. <td>
  13. {{r.date}}
  14. </td>
  15. <td>
  16. {{r.file}}
  17. </td>
  18. <td>
  19. {{r.length}}
  20. </td>
  21. <td>
  22. <a ng-href="/#/cut/{{r._id}}">editar</a>
  23. </td>
  24. </tr>
  25. </table>
  26. </div>