snapshots.html 962 B

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