apps.html 955 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <topnav title="Plugins" icon="fa fa-fw fa-cubes" subnav="true">
  2. <ul class="nav">
  3. <li class="active" ><a href="org/apps">Overview</a></li>
  4. </ul>
  5. </topnav>
  6. <div class="page-container">
  7. <div class="page">
  8. <h2>Plugins</h2>
  9. <div ng-if="!apps">
  10. <em>No apps defined</em>
  11. </div>
  12. <table class="grafana-options-table" ng-if="apps">
  13. <tr>
  14. <td><strong>Type</strong></td>
  15. <td></td>
  16. <td></td>
  17. </tr>
  18. <tr ng-repeat="(type, p) in apps">
  19. <td style="width:1%">
  20. <i class="fa fa-cubes"></i> &nbsp;
  21. {{p.type}}
  22. </td>
  23. <td style="width: 1%">
  24. <a href="org/apps/edit/{{p.type}}" class="btn btn-inverse btn-mini">
  25. <i class="fa fa-edit"></i>
  26. Edit
  27. </a>
  28. </td>
  29. <td style="width: 1%">
  30. Enabled&nbsp;
  31. <input id="p.enabled" type="checkbox" ng-model="p.enabled" ng-checked="p.enabled" ng-change="update(p)">
  32. <label for="p.enabled"></label>
  33. </td>
  34. </tr>
  35. </table>
  36. </div>
  37. </div>