@spalger/kibana
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
36 lines (34 loc) • 1.06 kB
HTML
<table ng-if="rows" class="table agg-table-group">
<thead ng-repeat-start="table in rows">
<tr>
<th ng-if="table.tables">
<span class="agg-table-group-header">{{ table.title }}</span>
</th>
</tr>
</thead>
<tbody ng-repeat-end>
<tr>
<td>
<kbn-agg-table-group ng-if="table.tables" group="table" per-page="perPage"></kbn-agg-table-group>
<kbn-agg-table ng-if="table.rows" table="table" per-page="perPage"></kbn-agg-table>
</td>
</tr>
</tbody>
</table>
<table ng-if="columns" class="table agg-table-group">
<thead>
<tr>
<th ng-repeat="table in columns" ng-if="table.tables">
<span class="agg-table-group-header">{{ table.title }}</span>
</th>
</tr>
</thead>
<tbody>
<tr>
<td ng-repeat="table in columns">
<kbn-agg-table-group ng-if="table.tables" group="table" per-page="perPage"></kbn-agg-table-group>
<kbn-agg-table ng-if="table.rows" table="table" per-page="perPage"></kbn-agg-table>
</td>
</tr>
</tbody>
</table>