mirror of https://github.com/Squidex/squidex.git
1 changed files with 0 additions and 28 deletions
@ -1,28 +0,0 @@ |
|||||
<div class="clearfix" *ngIf="!autoHide || canGoPrev || canGoNext"> |
|
||||
<div class="float-right pagination" *ngIf="paging"> |
|
||||
<select class="custom-select custom-select-sm" [ngModel]="paging.pageSize" (ngModelChange)="setPageSize($event)"> |
|
||||
<option *ngFor="let pageSize of pageSizes" [ngValue]="pageSize">{{pageSize}}</option> |
|
||||
</select> |
|
||||
|
|
||||
<span class="page-info"> |
|
||||
<ng-container *ngIf="paging.count > 0 && paging.total > 0"> |
|
||||
<button class="btn deactivated"> |
|
||||
{{ 'common.pagerInfo' | sqxTranslate: translationInfo }} |
|
||||
</button> |
|
||||
</ng-container> |
|
||||
|
|
||||
<ng-container *ngIf="paging.count > 0 && paging.total <= 0"> |
|
||||
<button class="btn" title="{{ 'common.pagerReload' | sqxTranslate }}" (click)="loadTotal.emit()"> |
|
||||
{{ 'common.pagerInfoNoTotal' | sqxTranslate: translationInfo }} |
|
||||
</button> |
|
||||
</ng-container> |
|
||||
|
|
||||
<button type="button" class="btn btn-text-secondary pagination-button" [disabled]="!canGoPrev" (click)="goPrev()"> |
|
||||
<i class="icon-angle-left"></i> |
|
||||
</button> |
|
||||
<button type="button" class="btn btn-text-secondary pagination-button" [disabled]="!canGoNext" (click)="goNext()"> |
|
||||
<i class="icon-angle-right"></i> |
|
||||
</button> |
|
||||
</span> |
|
||||
</div> |
|
||||
</div> |
|
||||
Loading…
Reference in new issue