settings.html 806 B

12345678910111213141516171819202122232425262728293031323334
  1. <div class="edit-tab-with-sidemenu" ng-if="ctrl.viewId !== 'timepicker'">
  2. <aside class="edit-sidemenu-aside">
  3. <h2>
  4. <i class="fa fa-cog"></i>
  5. Settings
  6. </h2>
  7. <ul class="edit-sidemenu">
  8. <li ng-class="{active: ctrl.viewId === section.id}" ng-repeat="section in ctrl.sections">
  9. <a ng-click="ctrl.viewId = section.id">
  10. {{::section.title}}
  11. </a>
  12. </li>
  13. </ul>
  14. </aside>
  15. <div class="edit-tab-content" ng-if="ctrl.viewId === 'general'">
  16. general
  17. </div>
  18. <div class="edit-tab-content" ng-if="ctrl.viewId === 'annotations'">
  19. annotations
  20. </div>
  21. <div class="edit-tab-content" ng-if="ctrl.viewId === 'templating'">
  22. annotations
  23. </div>
  24. </div>
  25. <div ng-if="ctrl.viewId === 'timepicker'">
  26. <gf-time-picker-dropdown dashboard="ctrl.dashboard"></gf-time-picker-dropdown>
  27. </div>