snapshots.html 1.1 KB

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