grafana/public/app/partials/roweditor.html

31 lines
918 B
HTML
Raw Normal View History

<div class="gf-box-header">
<div class="gf-box-title">
2015-01-08 04:03:27 -06:00
<i class="fa fa-th-list"></i>
2014-08-26 02:32:30 -05:00
Row settings
</div>
2013-07-23 12:10:00 -05:00
2014-08-26 02:32:30 -05:00
<div ng-model="editor.index" bs-tabs style="text-transform:capitalize;">
<div ng-repeat="tab in ['General']" data-title="{{tab}}">
2014-08-26 02:32:30 -05:00
</div>
</div>
2013-07-23 12:10:00 -05:00
<button class="gf-box-header-close-btn" ng-click="dismiss();">
<i class="fa fa-remove"></i>
</button>
2014-08-26 02:32:30 -05:00
</div>
<div class="gf-box-body">
2014-08-26 02:32:30 -05:00
<div class="editor-row" ng-if="editor.index == 0">
<div class="editor-option">
<label class="small">Title</label><input type="text" class="input-xlarge" ng-model='row.title'></input>
</div>
<div class="editor-option">
<label class="small">Height</label><input type="text" class="input-mini" ng-model='row.height'></input>
</div>
2014-09-30 03:27:56 -05:00
<editor-opt-bool text="Editable" model="row.editable"></editor-opt-bool>
<editor-opt-bool text="Show title" model="row.showTitle"></editor-opt-bool>
</div>
</div>