panelTime.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <div class="gf-form-group">
  2. <div class="gf-form">
  3. <span class="gf-form-label">
  4. <i class="fa fa-clock-o"></i>
  5. </span>
  6. <span class="gf-form-label width-12">Override relative time</span>
  7. <span class="gf-form-label width-6">Last</span>
  8. <input type="text" class="gf-form-input max-width-8" placeholder="1h"
  9. empty-to-null ng-model="ctrl.panel.timeFrom" valid-time-span
  10. ng-change="ctrl.refresh()" ng-model-onblur>
  11. </div>
  12. <div class="gf-form">
  13. <span class="gf-form-label">
  14. <i class="fa fa-clock-o"></i>
  15. </span>
  16. <span class="gf-form-label width-12">Add time shift</span>
  17. <span class="gf-form-label width-6">Amount</span>
  18. <input type="text" class="gf-form-input max-width-8" placeholder="1h"
  19. empty-to-null ng-model="ctrl.panel.timeShift" valid-time-span
  20. ng-change="ctrl.refresh()" ng-model-onblur>
  21. </div>
  22. <div class="gf-form">
  23. <span class="gf-form-label">
  24. <i class="fa fa-clock-o"></i>
  25. </span>
  26. <editor-checkbox text="Hide time override info" model="ctrl.panel.hideTimeOverride" change="ctrl.refresh()"></editor-checkbox>
  27. </div>
  28. </div>