mirror of
https://github.com/grafana/grafana.git
synced 2025-01-05 21:53:45 -06:00
17 lines
660 B
HTML
17 lines
660 B
HTML
<div class="modal-header">
|
||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||
<h3>{{panel.title}} <small>editor</small></h3>
|
||
</div>
|
||
<div class="modal-body">
|
||
|
||
<h4>General <small> panel settings</small></h4>
|
||
<div ng-include src="'partials/panelgeneral.html'"></div>
|
||
|
||
|
||
<h4 style="text-transform: capitalize;">{{panel.type}} <small> panel settings</small></h4>
|
||
<div ng-include src="edit_path(panel.type)">No additional settings are available for this type of panel.</div>
|
||
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button type="button" class="btn btn-success" ng-click="dismiss();send_render()">Close</button>
|
||
</div> |