| 123456789101112131415161718192021222324252627282930 |
- <div class="submenu-controls" ng-controller="SubmenuCtrl">
- <div class="tight-form borderless">
- <ul class="tight-form-list" ng-if="dashboard.templating.enable">
- <li class="tight-form-item">
- <strong>Variables:</strong>
- </li>
- <li ng-repeat-start="variable in variables" class="tight-form-item template-param-name">
- <span class="template-variable ">
- ${{variable.name}}:
- </span>
- </li>
- <li ng-repeat-end template-param-selector>
- </li>
- </ul>
- <ul class="tight-form-list" ng-if="dashboard.annotations.enable">
- <strong>ANNOTATIONS</strong>
- <li ng-repeat="annotation in dashboard.annotations.list" class="tight-form-item annotation-segment" ng-class="{'annotation-disabled': !annotation.enable}">
- <a ng-click="disableAnnotation(annotation)">
- <i class="annotation-color-icon fa fa-bolt"></i>
- {{annotation.name}}
- </a>
- </li>
- </ul>
- <div class="clearfix"></div>
- </div>
- </div>
|