more layout

This commit is contained in:
Jonas Winkler 2020-11-22 20:00:58 +01:00
parent 63953b85e9
commit b622b3fc6a
4 changed files with 53 additions and 45 deletions

View File

@ -71,32 +71,33 @@
</div> </div>
</div> </div>
<div class="row m-0 justify-content-end">
<ngb-pagination [pageSize]="docs.currentPageSize" [collectionSize]="docs.collectionSize" [(page)]="docs.currentPage" [maxSize]="5" <ngb-pagination [pageSize]="docs.currentPageSize" [collectionSize]="docs.collectionSize" [(page)]="docs.currentPage" [maxSize]="5"
[rotate]="true" (pageChange)="reload()" aria-label="Default pagination"></ngb-pagination> [rotate]="true" (pageChange)="reload()" aria-label="Default pagination"></ngb-pagination>
</div>
<div *ngIf="displayMode == 'largeCards'"> <div *ngIf="displayMode == 'largeCards'">
<app-document-card-large *ngFor="let d of docs.documents" [document]="d" [details]="d.content"> <app-document-card-large *ngFor="let d of docs.documents" [document]="d" [details]="d.content">
</app-document-card-large> </app-document-card-large>
</div> </div>
<table class="table table-hover table-sm" *ngIf="displayMode == 'details'"> <table class="table table-hover table-sm border" *ngIf="displayMode == 'details'">
<thead> <thead>
<th>ASN</th> <th class="d-none d-lg-table-cell">ASN</th>
<th>Correspondent</th> <th class="d-none d-md-table-cell">Correspondent</th>
<th>Title</th> <th>Title</th>
<th>Document type</th> <th class="d-none d-xl-table-cell">Document type</th>
<th>Created</th> <th>Created</th>
<th>Added</th> <th class="d-none d-xl-table-cell">Added</th>
</thead> </thead>
<tbody> <tbody>
<tr *ngFor="let d of docs.documents" routerLink="/documents/{{d.id}}"> <tr *ngFor="let d of docs.documents" routerLink="/documents/{{d.id}}">
<td>{{d.archive_serial_number}}</td> <td class="d-none d-lg-table-cell">{{d.archive_serial_number}}</td>
<td>{{d.correspondent ? d.correspondent.name : ''}}</td> <td class="d-none d-md-table-cell">{{d.correspondent ? d.correspondent.name : ''}}</td>
<td>{{d.title}}<app-tag [tag]="t" *ngFor="let t of d.tags" class="ml-1"></app-tag> <td>{{d.title}}<app-tag [tag]="t" *ngFor="let t of d.tags" class="ml-1"></app-tag></td>
</td> <td class="d-none d-xl-table-cell">{{d.document_type ? d.document_type.name : ''}}</td>
<td>{{d.document_type ? d.document_type.name : ''}}</td>
<td>{{d.created | date}}</td> <td>{{d.created | date}}</td>
<td>{{d.added | date}}</td> <td class="d-none d-xl-table-cell">{{d.added | date}}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>

View File

@ -4,9 +4,11 @@
</button> </button>
</app-page-header> </app-page-header>
<div class="row m-0 justify-content-end">
<ngb-pagination [pageSize]="25" [collectionSize]="collectionSize" [(page)]="page" (pageChange)="reloadData()" aria-label="Default pagination"></ngb-pagination> <ngb-pagination [pageSize]="25" [collectionSize]="collectionSize" [(page)]="page" (pageChange)="reloadData()" aria-label="Default pagination"></ngb-pagination>
</div>
<table class="table table-striped"> <table class="table table-striped border">
<thead> <thead>
<tr> <tr>
<th scope="col" sortable="name" (sort)="onSort($event)">Name</th> <th scope="col" sortable="name" (sort)="onSort($event)">Name</th>

View File

@ -4,10 +4,12 @@
</button> </button>
</app-page-header> </app-page-header>
<div class="row m-0 justify-content-end">
<ngb-pagination [pageSize]="25" [collectionSize]="collectionSize" [(page)]="page" (pageChange)="reloadData()" <ngb-pagination [pageSize]="25" [collectionSize]="collectionSize" [(page)]="page" (pageChange)="reloadData()"
aria-label="Default pagination"></ngb-pagination> aria-label="Default pagination"></ngb-pagination>
</div>
<table class="table table-striped"> <table class="table table-striped border">
<thead> <thead>
<tr> <tr>
<th scope="col" sortable="name" (sort)="onSort($event)">Name</th> <th scope="col" sortable="name" (sort)="onSort($event)">Name</th>

View File

@ -4,9 +4,12 @@
</button> </button>
</app-page-header> </app-page-header>
<ngb-pagination [pageSize]="25" [collectionSize]="collectionSize" [(page)]="page" (pageChange)="reloadData()" aria-label="Default pagination"></ngb-pagination> <div class="row m-0 justify-content-end">
<ngb-pagination [pageSize]="25" [collectionSize]="collectionSize" [(page)]="page" (pageChange)="reloadData()"
aria-label="Default pagination"></ngb-pagination>
</div>
<table class="table table-striped"> <table class="table table-striped border">
<thead> <thead>
<tr> <tr>
<th scope="col" sortable="name" (sort)="onSort($event)">Name</th> <th scope="col" sortable="name" (sort)="onSort($event)">Name</th>
@ -19,7 +22,8 @@
<tbody> <tbody>
<tr *ngFor="let tag of data"> <tr *ngFor="let tag of data">
<td scope="row">{{ tag.name }}</td> <td scope="row">{{ tag.name }}</td>
<td scope="row"><span class="badge" [style.color]="getColor(tag.colour).textColor" [style.background-color]="getColor(tag.colour).value">{{ getColor(tag.colour).name }}</span></td> <td scope="row"><span class="badge" [style.color]="getColor(tag.colour).textColor"
[style.background-color]="getColor(tag.colour).value">{{ getColor(tag.colour).name }}</span></td>
<td scope="row">{{ getMatching(tag) }}</td> <td scope="row">{{ getMatching(tag) }}</td>
<td scope="row">{{ tag.document_count }}</td> <td scope="row">{{ tag.document_count }}</td>
<td scope="row"> <td scope="row">
@ -31,4 +35,3 @@
</tr> </tr>
</tbody> </tbody>
</table> </table>