module.html 435 B

12345678910111213
  1. <div ng-controller='table'>
  2. <h4>{{panel.title}}</h4>
  3. <div style="height:{{row.height}};overflow-y:auto;overflow-x:hidden">
  4. <table class="table table-condensed table-striped">
  5. <thead>
  6. <th ng-repeat="field in panel.fields">{{field}}</th>
  7. </thead>
  8. <tr ng-repeat="row in data">
  9. <td ng-repeat="field in panel.fields">{{row['_source'][field]}}</td>
  10. </tr>
  11. </table>
  12. </div>
  13. </div>