2017-12-01 04:32:00 -06:00
|
|
|
<page-header model="ctrl.navModel"></page-header>
|
2016-01-19 07:02:22 -06:00
|
|
|
|
2017-12-01 04:32:00 -06:00
|
|
|
<div class="page-container page-body">
|
|
|
|
<table class="filter-table">
|
2016-02-23 05:41:15 -06:00
|
|
|
<thead>
|
|
|
|
<th><strong>Name</strong></th>
|
|
|
|
<th><strong>Snapshot url</strong></th>
|
|
|
|
<th style="width: 70px"></th>
|
2018-12-10 15:40:26 -06:00
|
|
|
<th style="width: 30px"></th>
|
2016-02-23 05:41:15 -06:00
|
|
|
<th style="width: 25px"></th>
|
2017-08-16 04:28:52 -05:00
|
|
|
</thead>
|
|
|
|
<tr ng-repeat="snapshot in ctrl.snapshots">
|
2016-02-23 05:41:15 -06:00
|
|
|
<td>
|
2018-12-10 15:40:26 -06:00
|
|
|
<a href="{{snapshot.url}}">{{snapshot.name}}</a>
|
2016-02-23 05:41:15 -06:00
|
|
|
</td>
|
|
|
|
<td >
|
2018-12-10 15:40:26 -06:00
|
|
|
<a href="{{snapshot.url}}">{{snapshot.url}}</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class="query-keyword" ng-if="snapshot.external">External</span>
|
2016-02-23 05:41:15 -06:00
|
|
|
</td>
|
|
|
|
<td class="text-center">
|
2019-04-08 02:48:15 -05:00
|
|
|
<a href="{{snapshot.url}}" class="btn btn-inverse btn-small">
|
2019-04-17 08:18:32 -05:00
|
|
|
<i class="gicon gicon-viewer"></i>
|
2016-02-23 05:41:15 -06:00
|
|
|
View
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
<td class="text-right">
|
2019-04-08 02:48:15 -05:00
|
|
|
<a ng-click="ctrl.removeSnapshot(snapshot)" class="btn btn-danger btn-small">
|
2016-02-23 05:41:15 -06:00
|
|
|
<i class="fa fa-remove"></i>
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2016-01-19 07:02:22 -06:00
|
|
|
|
|
|
|
</div>
|