use correct tag for pagination

This commit is contained in:
Davide Alberani 2017-04-02 17:39:33 +02:00
parent 72dfcaa4dd
commit bb2b2fd91f
2 changed files with 8 additions and 8 deletions

View file

@ -30,9 +30,9 @@
<input eventman-focus type="text" id="query-tickets" class="form-control" placeholder="{{'Name or email' | translate}}" ng-model="query" ng-model-options="{debounce: 350}"> <input eventman-focus type="text" id="query-tickets" class="form-control" placeholder="{{'Name or email' | translate}}" ng-model="query" ng-model-options="{debounce: 350}">
</div>&nbsp;<label>&nbsp;<input type="checkbox" ng-model="registeredFilterOptions.all" /> {{'Show cancelled tickets' | translate}}</label> </div>&nbsp;<label>&nbsp;<input type="checkbox" ng-model="registeredFilterOptions.all" /> {{'Show cancelled tickets' | translate}}</label>
</form> </form>
<pagination ng-model="currentPage" total-items="filteredLength" items-per-page="itemsPerPage" <uib-pagination ng-model="currentPage" total-items="filteredLength" items-per-page="itemsPerPage"
direction-links="false" boundary-links="true" boundary-link-numbers="true" max-size="maxPaginationSize"> direction-links="false" boundary-links="true" boundary-link-numbers="true" max-size="maxPaginationSize">
</pagination> </uib-pagination>
<table class="table table-striped"> <table class="table table-striped">
<thead> <thead>
<tr> <tr>
@ -74,9 +74,9 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>
<pagination ng-model="currentPage" total-items="filteredLength" items-per-page="itemsPerPage" <uib-pagination ng-model="currentPage" total-items="filteredLength" items-per-page="itemsPerPage"
direction-links="false" boundary-links="true" boundary-link-numbers="true" max-size="maxPaginationSize"> direction-links="false" boundary-links="true" boundary-link-numbers="true" max-size="maxPaginationSize">
</pagination> </uib-pagination>
</div> </div>
</div> </div>
</div> </div>

View file

@ -15,9 +15,9 @@
</div> </div>
</form> </form>
<pagination ng-model="currentPage" total-items="filteredLength" items-per-page="itemsPerPage" <uib-pagination ng-model="currentPage" total-items="filteredLength" items-per-page="itemsPerPage"
direction-links="false" boundary-links="true" boundary-link-numbers="true" max-size="maxPaginationSize"> direction-links="false" boundary-links="true" boundary-link-numbers="true" max-size="maxPaginationSize">
</pagination> </uib-pagination>
<table class="table table-striped"> <table class="table table-striped">
<thead> <thead>
<tr> <tr>
@ -43,9 +43,9 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>
<pagination ng-model="currentPage" total-items="filteredLength" items-per-page="itemsPerPage" <uib-pagination ng-model="currentPage" total-items="filteredLength" items-per-page="itemsPerPage"
direction-links="false" boundary-links="true" boundary-link-numbers="true" max-size="maxPaginationSize"> direction-links="false" boundary-links="true" boundary-link-numbers="true" max-size="maxPaginationSize">
</pagination> </uib-pagination>
</div> </div>
</div> </div>
</div> </div>