Add bottom pagination
This commit is contained in:
		
							parent
							
								
									a440b712de
								
							
						
					
					
						commit
						01ae5688d7
					
				@ -80,6 +80,7 @@
 | 
			
		||||
  <app-bulk-editor [hidden]="!isBulkEditing"></app-bulk-editor>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<ng-template #pagination>
 | 
			
		||||
  <div class="d-flex justify-content-between align-items-center">
 | 
			
		||||
    <p>
 | 
			
		||||
      <ng-container *ngIf="list.isReloading">
 | 
			
		||||
@ -94,6 +95,9 @@
 | 
			
		||||
    <ngb-pagination [pageSize]="list.currentPageSize" [collectionSize]="list.collectionSize" [(page)]="list.currentPage" [maxSize]="5"
 | 
			
		||||
    [rotate]="true" aria-label="Default pagination"></ngb-pagination>
 | 
			
		||||
  </div>
 | 
			
		||||
</ng-template>
 | 
			
		||||
 | 
			
		||||
<ng-container *ngTemplateOutlet="pagination"></ng-container>
 | 
			
		||||
 | 
			
		||||
<ng-container *ngIf="list.error ; else documentListNoError">
 | 
			
		||||
  <div class="alert alert-danger" role="alert">Error while loading documents: {{list.error}}</div>
 | 
			
		||||
@ -184,6 +188,9 @@
 | 
			
		||||
  <div class="m-n2 row row-cols-paperless-cards" *ngIf="displayMode == 'smallCards'">
 | 
			
		||||
    <app-document-card-small class="p-0" [selected]="list.isSelected(d)" (toggleSelected)="toggleSelected(d, $event)" [document]="d" *ngFor="let d of list.documents; trackBy: trackByDocumentId" (clickTag)="clickTag($event)" (clickCorrespondent)="clickCorrespondent($event)" (clickDocumentType)="clickDocumentType($event)"></app-document-card-small>
 | 
			
		||||
  </div>
 | 
			
		||||
  <div *ngIf="list.documents?.length > 15" class="mt-3">
 | 
			
		||||
    <ng-container *ngTemplateOutlet="pagination"></ng-container>
 | 
			
		||||
  </div>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
</ng-template>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user