module.html 534 B

123456789101112131415161718192021222324
  1. <div class="table-panel-wrapper">
  2. <grafana-panel>
  3. <div class="table-panel-container">
  4. <div class="table-panel-header-bg"></div>
  5. <div class="table-panel-scroll">
  6. <table class="table-panel-table">
  7. <thead>
  8. <tr>
  9. <th ng-repeat="col in table.columns">
  10. <div class="table-panel-table-header-inner">
  11. {{col.text}}
  12. </div>
  13. </th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. </tbody>
  18. </table>
  19. </div>
  20. </div>
  21. <div class="table-panel-footer">
  22. </div>
  23. </grafana-panel>
  24. </div>