settings.html 756 B

123456789101112131415161718192021222324252627
  1. <navbar icon="fa fa-fw fa-cogs" title="Admin" title-url="admin">
  2. </navbar>
  3. <div class="page-container">
  4. <div class="page-header">
  5. <h1>Server settings</h1>
  6. </div>
  7. <div class="grafana-info-box span8" style="margin: 20px 0 25px 0">
  8. These system settings are defined in grafana.ini or custom.ini (or overriden in ENV variables).
  9. To change these you currently need to restart grafana.
  10. </div>
  11. <table class="grafana-options-table">
  12. <tr ng-repeat-start="(secName, secValue) in settings">
  13. <td class="admin-settings-section">{{secName}}</td>
  14. <td></td>
  15. </tr>
  16. <tr ng-repeat="(keyName, keyValue) in secValue" ng-repeat-end>
  17. <td style="padding-left: 25px;">{{keyName}}</td>
  18. <td>{{keyValue}}</td>
  19. </tr>
  20. </table>
  21. </div>