mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
1.0 KiB
18 lines
1.0 KiB
<div class="d-flex align-items-center justify-content-end" *ngIf="!autoHide || canGoPrev || canGoNext">
|
|
<div class="float-end pagination" *ngIf="paging">
|
|
<select class="form-select form-select-sm" [ngModel]="paging.pageSize" (ngModelChange)="setPageSize($event)">
|
|
<option *ngFor="let pageSize of pageSizes" [ngValue]="pageSize">{{pageSize}}</option>
|
|
</select>
|
|
|
|
<span class="page-info d-flex align-items-center justify-content-end">
|
|
<span *ngIf="paging.count > 0" class="pagination-text">{{ 'common.pagerInfo' | sqxTranslate: translationInfo }}</span>
|
|
|
|
<button type="button" class="btn btn-sm btn-text-secondary ms-2" [disabled]="!canGoPrev" (click)="goPrev()">
|
|
<i class="icon-angle-left"></i>
|
|
</button>
|
|
<button type="button" class="btn btn-sm btn-text-secondary ms-2" [disabled]="!canGoNext" (click)="goNext()">
|
|
<i class="icon-angle-right"></i>
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</div>
|