snapshots.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <navbar icon="icon-gf icon-gf-snapshot" title="Snapshots" title-url="dashboard/snapshots">
  2. </navbar>
  3. <div class="page-container">
  4. <div class="page-header">
  5. <h1>Available snapshots</h1>
  6. </div>
  7. <table class="filter-table" style="margin-top: 20px">
  8. <thead>
  9. <th><strong>Name</strong></th>
  10. <th><strong>Snapshot url</strong></th>
  11. <th style="width: 70px"></th>
  12. <th style="width: 25px"></th>
  13. </thead>
  14. <tr ng-repeat="snapshot in ctrl.snapshots">
  15. <td>
  16. <a href="dashboard/snapshot/{{snapshot.key}}">{{snapshot.name}}</a>
  17. </td>
  18. <td >
  19. <a href="dashboard/snapshot/{{snapshot.key}}">dashboard/snapshot/{{snapshot.key}}</a>
  20. </td>
  21. <td class="text-center">
  22. <a href="dashboard/snapshot/{{snapshot.key}}" class="btn btn-inverse btn-mini">
  23. <i class="fa fa-eye"></i>
  24. View
  25. </a>
  26. </td>
  27. <td class="text-right">
  28. <a ng-click="ctrl.removeSnapshot(snapshot)" class="btn btn-danger btn-mini">
  29. <i class="fa fa-remove"></i>
  30. </a>
  31. </td>
  32. </tr>
  33. </table>
  34. </div>