mirror of
https://github.com/grafana/grafana.git
synced 2025-02-09 23:16:16 -06:00
45 lines
1.8 KiB
HTML
45 lines
1.8 KiB
HTML
<div class="editor-row">
|
|
<div class="section gf-form-group">
|
|
<h5 class="section-heading">Info</h5>
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-7">Title</span>
|
|
<input type="text" class="gf-form-input width-25" ng-model='ctrl.panel.title'></input>
|
|
</div>
|
|
<div class="gf-form gf-form--v-stretch">
|
|
<span class="gf-form-label width-7">Description</span>
|
|
<textarea class="gf-form-input width-25" rows="3" ng-model="ctrl.panel.description" placeholder="Panel description, supports markdown & links"></textarea>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section gf-form-group">
|
|
<h5 class="section-heading">Dimensions</h5>
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-7">Span</span>
|
|
<select class="gf-form-input width-6" ng-model="ctrl.panel.span" ng-options="f for f in [0,1,2,3,4,5,6,7,8,9,10,11,12]"></select>
|
|
</div>
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-7">Height</span>
|
|
<input type="text" class="gf-form-input width-6" ng-model='ctrl.panel.height' placeholder="100px"></input>
|
|
</div>
|
|
<gf-form-switch class="gf-form" label-class="width-7" switch-class="max-width-6" label="Transparent" checked="ctrl.panel.transparent" on-change="ctrl.render()"></gf-form-switch>
|
|
</div>
|
|
|
|
<div class="section gf-form-group">
|
|
<h5 class="section-heading">Templating</h5>
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-8">Repeat Panel</span>
|
|
<dash-repeat-option model="ctrl.panel"></dash-repeat-option>
|
|
</div>
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-8">Min span</span>
|
|
<select class="gf-form-input" ng-model="ctrl.panel.minSpan" ng-options="f for f in [1,2,3,4,5,6,7,8,9,10,11,12]">
|
|
<option value=""></option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<panel-links-editor panel="ctrl.panel"></panel-links-editor>
|
|
|
|
|