mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* removed unsused grafana-icon classes, replaced grafana-icons with gicons * replaced old dashboard and datasource icons with gicon, fixed so icons on plugin list are shown * removed unsused grafana-icon classes, replaced grafana-icons with gicons * replaced old dashboard and datasource icons with gicon, fixed so icons on plugin list are shown * replaced fontawesome cog, eye, link and edit with gicons * updated snapshot * fixed color of cog in dashboard nav, removed icons from buttons, ran preitterier on some files * changed opacity on getting started icons and fixed getting started button * .5 -> 0.5 fix for prettier
37 lines
1.0 KiB
HTML
37 lines
1.0 KiB
HTML
<page-header model="ctrl.navModel"></page-header>
|
|
|
|
<div class="page-container page-body">
|
|
<table class="filter-table">
|
|
<thead>
|
|
<th><strong>Name</strong></th>
|
|
<th><strong>Snapshot url</strong></th>
|
|
<th style="width: 70px"></th>
|
|
<th style="width: 30px"></th>
|
|
<th style="width: 25px"></th>
|
|
</thead>
|
|
<tr ng-repeat="snapshot in ctrl.snapshots">
|
|
<td>
|
|
<a href="{{snapshot.url}}">{{snapshot.name}}</a>
|
|
</td>
|
|
<td >
|
|
<a href="{{snapshot.url}}">{{snapshot.url}}</a>
|
|
</td>
|
|
<td>
|
|
<span class="query-keyword" ng-if="snapshot.external">External</span>
|
|
</td>
|
|
<td class="text-center">
|
|
<a href="{{snapshot.url}}" class="btn btn-inverse btn-small">
|
|
<i class="gicon gicon-viewer"></i>
|
|
View
|
|
</a>
|
|
</td>
|
|
<td class="text-right">
|
|
<a ng-click="ctrl.removeSnapshot(snapshot)" class="btn btn-danger btn-small">
|
|
<i class="fa fa-remove"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</div>
|