mirror of
https://github.com/getredash/redash.git
synced 2026-05-08 09:01:12 -04:00
31 lines
800 B
HTML
31 lines
800 B
HTML
<table class="table table-condensed table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th ng-repeat="column in $ctrl.columns">
|
|
{{column}}
|
|
</th>
|
|
</tr>
|
|
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="row in $ctrl.rows">
|
|
<td ng-repeat="(name, value) in row">
|
|
{{value}}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="text-center">
|
|
<ul uib-pagination total-items="$ctrl.rowsCount"
|
|
items-per-page="$ctrl.itemsPerPage"
|
|
ng-model="$ctrl.page"
|
|
max-size="6"
|
|
class="pagination"
|
|
boundary-link-numbers="true"
|
|
rotate="false"
|
|
next-text='>'
|
|
previous-text='<'
|
|
ng-change="$ctrl.pageChanged()"></ul>
|
|
</div>
|