snapshots.html 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <navbar model="ctrl.navModel"></navbar>
  2. <div class="page-container">
  3. <div class="page-header">
  4. <h1>Available snapshots</h1>
  5. </div>
  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>