snapshot_list.html 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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: 30px"></th>
  9. <th style="width: 25px"></th>
  10. </thead>
  11. <tr ng-repeat="snapshot in ctrl.snapshots">
  12. <td>
  13. <a href="{{snapshot.url}}">{{snapshot.name}}</a>
  14. </td>
  15. <td >
  16. <a href="{{snapshot.url}}">{{snapshot.url}}</a>
  17. </td>
  18. <td>
  19. <span class="query-keyword" ng-if="snapshot.external">External</span>
  20. </td>
  21. <td class="text-center">
  22. <a href="{{snapshot.url}}" class="btn btn-inverse btn-small">
  23. <i class="gicon gicon-viewer"></i>
  24. View
  25. </a>
  26. </td>
  27. <td class="text-right">
  28. <a ng-click="ctrl.removeSnapshot(snapshot)" class="btn btn-danger btn-small">
  29. <i class="fa fa-remove"></i>
  30. </a>
  31. </td>
  32. </tr>
  33. </table>
  34. </div>