Commit afb62638 by bergquist

ux(import): convert to new css format

parent 4a062b6d
...@@ -2,62 +2,51 @@ ...@@ -2,62 +2,51 @@
</navbar> </navbar>
<div class="page-container"> <div class="page-container">
<div class="page"> <div class="page-header">
<h2> <h1>
Import file Import file
<em style="font-size: 14px;padding-left: 10px;"> <i class="fa fa-info-circle"></i> Load dashboard from local .json file</em> <em style="font-size: 14px;padding-left: 10px;"> <i class="fa fa-info-circle"></i> Load dashboard from local .json file</em>
</h2> </h1>
</div>
<div class="editor-row">
<div class="section"> <div class="gf-form-group">
<div class="editor-option"> <form class="gf-form">
<form> <input type="file" id="dashupload" dash-upload/><br>
<input type="file" id="dashupload" dash-upload/><br> </form>
</form> </div>
</div>
</div> <h5 class="page-heading">
</div> Migrate dashboards
<em style="font-size: 14px;padding-left: 10px;"><i class="fa fa-info-circle"></i> Import dashboards from Elasticsearch or InfluxDB</em>
</h5>
<h2> <div class="gf-form-group last">
Migrate dashboards <div class="gf-form">
<em style="font-size: 14px;padding-left: 10px;"><i class="fa fa-info-circle"></i> Import dashboards from Elasticsearch or InfluxDB</em> <div class="gf-form-label">Dashboard source</div>
</h2> <div>
<select type="text" ng-model="sourceName" class="input-medium tight-form-input" ng-options="f for f in datasources"></select>
<div class="tight-form last"> </div>
<ul class="tight-form-list"> <div class="gf-form-btn">
<li class="tight-form-item" style="width: 150px"> <button class="btn btn-success" ng-click="startImport()">Import</button>
<strong>Dashboard source</strong> </div>
</li>
<li>
<select type="text" ng-model="sourceName" class="input-medium tight-form-input" ng-options="f for f in datasources">
</select>
</li>
<li style="float: right">
<button class="btn btn-success tight-form-btn" ng-click="startImport()">Import</button>
</li>
<div class="clearfix"></div>
</ul>
</div> </div>
</div>
<div class="editor-row" ng-if="importing"> <h5 class="page-heading" ng-if="importing">{{infoText}}</h5>
<section class="section"> <div class="editor-row" ng-if="importing">
<h5>{{infoText}}</h5> <div class="editor-row row">
<table class="grafana-options-table span5">
<div class="editor-row row"> <tr ng-repeat="dash in imported">
<table class="grafana-options-table span5"> <td>{{dash.name}}</td>
<tr ng-repeat="dash in imported"> <td>
<td>{{dash.name}}</td> {{dash.info}}
<td> </td>
{{dash.info}} </tr>
</td> </table>
</tr>
</table>
</div>
</section>
</div> </div>
</div>
<div ng-include="'public/app/features/dashboard/partials/graphiteImport.html'"></div> <div ng-include="'public/app/features/dashboard/partials/graphiteImport.html'"></div>
</div>
</div> </div>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment