grafana/public/app/features/dashboard/settings/settings.html

22 lines
774 B
HTML
Raw Normal View History

2017-12-08 11:15:24 -06:00
<aside class="dashboard-settings__aside">
<h2 class="dashboard-settings__aside-header">
<i class="fa fa-cog"></i>
Settings
</h2>
2017-12-02 00:05:58 -06:00
2017-12-08 11:15:24 -06:00
<a href="{{::section.url}}" class="dashboard-settings__nav-item" ng-class="{active: ctrl.viewId === section.id}" ng-repeat="section in ctrl.sections">
2017-12-10 05:21:04 -06:00
<i class="{{::section.icon}}"></i>
2017-12-08 11:15:24 -06:00
{{::section.title}}
</a>
</aside>
2017-12-01 14:04:48 -06:00
2017-12-08 11:15:24 -06:00
<div class="dashboard-settings__content" ng-if="ctrl.viewId === 'settings'" ng-include="'public/app/features/dashboard/partials/settings.html'">
</div>
2017-12-01 14:04:48 -06:00
2017-12-08 11:15:24 -06:00
<div class="dashboard-settings__content" ng-if="ctrl.viewId === 'annotations'" ng-include="'public/app/features/annotations/partials/editor.html'">
</div>
2017-12-01 14:04:48 -06:00
2017-12-08 11:15:24 -06:00
<div class="dashboard-settings__content" ng-if="ctrl.viewId === 'templating'">
annotationus
</div>