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