grafana/src/app/partials/dasheditor.html

109 lines
4.5 KiB
HTML
Raw Normal View History

<div class="modal-body">
2013-07-23 12:10:00 -05:00
<div class="pull-right editor-title">Dashboard settings</div>
<div ng-model="editor.index" bs-tabs style="text-transform:capitalize;">
<div ng-repeat="tab in ['General', 'Rows', 'Controls', 'Import']" data-title="{{tab}}">
2013-07-23 12:10:00 -05:00
</div>
2014-06-07 14:00:05 -05:00
<div ng-repeat="tab in dashboard.nav" data-title="{{tab.type}}">
</div>
2013-07-23 12:10:00 -05:00
</div>
<div ng-if="editor.index == 0">
2013-12-26 10:27:27 -06:00
<div class="editor-row">
<div class="section">
<div class="editor-option">
2014-06-07 14:00:05 -05:00
<label class="small">Title</label><input type="text" class="input-large" ng-model='dashboard.title'></input>
2013-12-26 10:27:27 -06:00
</div>
<div class="editor-option">
2014-06-22 11:21:38 -05:00
<label class="small">Theme</label><select class="input-small" ng-model="dashboard.style" ng-options="f for f in ['dark','light']" ng-change="styleUpdated()"></select>
2013-12-26 10:27:27 -06:00
</div>
<div class="editor-option">
<label class="small">Time correction</label>
2014-06-07 14:00:05 -05:00
<select ng-model="dashboard.timezone" class='input-small' ng-options="f for f in ['browser','utc']"></select>
2013-12-26 10:27:27 -06:00
</div>
<div class="editor-option">
2014-06-12 06:37:40 -05:00
<label class="small">Hide controls (CTRL+H)</label>
2014-06-07 14:00:05 -05:00
<input type="checkbox" ng-model="dashboard.hideControls" ng-checked="dashboard.hideControls">
2013-12-26 10:27:27 -06:00
</div>
</div>
</div>
<div class="editor-row">
<div class="section">
<div class="editor-option">
<label class="small">Tags</label>
2014-06-07 14:00:05 -05:00
<bootstrap-tagsinput ng-model="dashboard.tags" tagclass="label label-tag" placeholder="add tags">
</bootstrap-tagsinput>
<tip>Press enter to a add tag</tip>
</div>
</div>
</div>
</div>
2013-09-06 15:20:12 -05:00
2013-12-26 10:27:27 -06:00
<div ng-if="editor.index == 1">
<div class="editor-row">
2013-12-26 10:27:27 -06:00
<div class="span8">
<h4>Rows</h4>
<table class="table table-striped">
2013-09-06 15:20:12 -05:00
<thead>
2013-12-26 10:27:27 -06:00
<th width="1%"></th>
<th width="1%"></th>
<th width="1%"></th>
<th width="97%">Title</th>
2013-09-06 15:20:12 -05:00
</thead>
2014-06-07 14:00:05 -05:00
<tr ng-repeat="row in dashboard.rows">
<td><i ng-click="_.move(dashboard.rows,$index,$index-1)" ng-hide="$first" class="pointer icon-arrow-up"></i></td>
<td><i ng-click="_.move(dashboard.rows,$index,$index+1)" ng-hide="$last" class="pointer icon-arrow-down"></i></td>
<td><i ng-click="dashboard.rows = _.without(dashboard.rows,row)" class="pointer icon-remove"></i></td>
2013-12-26 10:27:27 -06:00
<td>{{row.title}}</td>
2013-09-06 15:20:12 -05:00
</tr>
</table>
</div>
2013-12-26 10:27:27 -06:00
<div class="span4">
<h4>Add Row</h4>
<label class="small">Title</label>
<input type="text" class="input-normal" ng-model='row.title' placeholder="New row"></input>
2013-12-26 10:27:27 -06:00
<label class="small">Height</label>
<input type="text" class="input-mini" ng-model='row.height'></input>
</div>
2013-09-06 15:20:12 -05:00
</div>
</div>
<div ng-if="editor.index == 2">
2013-12-26 10:27:27 -06:00
<div class="editor-row">
<div class="section">
<h5>Feature toggles</h5>
<div class="editor-option" ng-repeat="pulldown in dashboard.pulldowns">
<label class="small" style="text-transform:capitalize;">{{pulldown.type}}</label><input type="checkbox" ng-model="pulldown.enable" ng-checked="pulldown.enable">
</div>
<div class="editor-option" ng-repeat="pulldown in dashboard.nav">
<label class="small" style="text-transform:capitalize;">{{pulldown.type}}</label><input type="checkbox" ng-model="pulldown.enable" ng-checked="pulldown.enable">
</div>
</div>
</div>
</div>
<div ng-if="editor.index == 3">
<ng-include src="'app/partials/import.html'"></ng-include>
</div>
<div ng-repeat="pulldown in dashboard.nav" ng-controller="SubmenuCtrl" ng-show="editor.index == 4+$index">
2013-11-07 15:25:24 -06:00
<ng-include ng-show="pulldown.enable" src="edit_path(pulldown.type)"></ng-include>
<button ng-hide="pulldown.enable" class="btn" ng-click="pulldown.enable = true">Enable the {{pulldown.type}}</button>
</div>
</div>
2013-09-06 15:20:12 -05:00
<div class="modal-footer">
<div class="pull-left grafana-version-footer" ng-if="editor.index == 0">
<span class="editor-option small">
Grafana version: {{grafanaVersion}}
</span>
<span> | <a ng-click="toggleConsole()" ng-show="!consoleEnabled">enable console</a> <a ng-click="toggleConsole()" ng-show="consoleEnabled">disable console</a></span>
<div class="small" grafana-version-check>
</div>
</div>
2014-06-07 14:00:05 -05:00
<button ng-click="add_row(dashboard,row); reset_row();" class="btn btn-success" ng-show="editor.index == 1">Create Row</button>
2014-06-13 06:50:09 -05:00
<button type="button" class="btn btn-info" ng-click="editor.index=0;dismiss();reset_panel();dashboard.emit_refresh()">Close</button>
</div>