mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
fixes #71
This commit is contained in:
parent
023aeea7ea
commit
fcc0cb7293
@ -8,11 +8,15 @@ Changelog
|
|||||||
paperless-ng 0.9.4
|
paperless-ng 0.9.4
|
||||||
##################
|
##################
|
||||||
|
|
||||||
* Front end: Clickable tags, correspondents and types allow quick filtering for related documents.
|
* Front end:
|
||||||
* Front end: Saved views are now editable.
|
* Clickable tags, correspondents and types allow quick filtering for related documents.
|
||||||
* Front end: Preview documents directly in the browser.
|
* Saved views are now editable.
|
||||||
|
* Preview documents directly in the browser.
|
||||||
|
* Navigation from the dashboard to saved views.
|
||||||
|
|
||||||
* Fixes:
|
* Fixes:
|
||||||
* A severe error when trying to use post consume scripts.
|
* A severe error when trying to use post consume scripts.
|
||||||
|
* An error in the consumer that cause invalid messages of missing files to show up in the log.
|
||||||
* The documentation now contains information about bare metal installs.
|
* The documentation now contains information about bare metal installs.
|
||||||
|
|
||||||
paperless-ng 0.9.3
|
paperless-ng 0.9.3
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
<app-widget-frame [title]="savedView.title">
|
<app-widget-frame [title]="savedView.title">
|
||||||
|
|
||||||
<table class="table table-sm table-hover table-borderless">
|
<a header-buttons [routerLink]="" (click)="showAll()">Show all</a>
|
||||||
|
|
||||||
|
|
||||||
|
<table content class="table table-sm table-hover table-borderless">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Created</th>
|
<th>Created</th>
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
import { Component, Input, OnInit } from '@angular/core';
|
import { Component, Input, OnInit } from '@angular/core';
|
||||||
|
import { Router } from '@angular/router';
|
||||||
import { PaperlessDocument } from 'src/app/data/paperless-document';
|
import { PaperlessDocument } from 'src/app/data/paperless-document';
|
||||||
import { SavedViewConfig } from 'src/app/data/saved-view-config';
|
import { SavedViewConfig } from 'src/app/data/saved-view-config';
|
||||||
|
import { DocumentListViewService } from 'src/app/services/document-list-view.service';
|
||||||
import { DocumentService } from 'src/app/services/rest/document.service';
|
import { DocumentService } from 'src/app/services/rest/document.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -10,7 +12,10 @@ import { DocumentService } from 'src/app/services/rest/document.service';
|
|||||||
})
|
})
|
||||||
export class SavedViewWidgetComponent implements OnInit {
|
export class SavedViewWidgetComponent implements OnInit {
|
||||||
|
|
||||||
constructor(private documentService: DocumentService) { }
|
constructor(
|
||||||
|
private documentService: DocumentService,
|
||||||
|
private router: Router,
|
||||||
|
private list: DocumentListViewService) { }
|
||||||
|
|
||||||
@Input()
|
@Input()
|
||||||
savedView: SavedViewConfig
|
savedView: SavedViewConfig
|
||||||
@ -23,4 +28,9 @@ export class SavedViewWidgetComponent implements OnInit {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
showAll() {
|
||||||
|
this.list.load(this.savedView)
|
||||||
|
this.router.navigate(["documents"])
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
<app-widget-frame title="Statistics">
|
<app-widget-frame title="Statistics">
|
||||||
<p class="card-text">Documents in inbox: {{statistics.documents_inbox}}</p>
|
<ng-container content>
|
||||||
<p class="card-text">Total documents: {{statistics.documents_total}}</p>
|
<p class="card-text">Documents in inbox: {{statistics.documents_inbox}}</p>
|
||||||
|
<p class="card-text">Total documents: {{statistics.documents_total}}</p>
|
||||||
|
</ng-container>
|
||||||
</app-widget-frame>
|
</app-widget-frame>
|
@ -1,6 +1,6 @@
|
|||||||
<app-widget-frame title="Upload new documents">
|
<app-widget-frame title="Upload new documents">
|
||||||
|
|
||||||
<form>
|
<form content>
|
||||||
<ngx-file-drop
|
<ngx-file-drop
|
||||||
dropZoneLabel="Drop documents here or" (onFileDrop)="dropped($event)"
|
dropZoneLabel="Drop documents here or" (onFileDrop)="dropped($event)"
|
||||||
(onFileOver)="fileOver($event)" (onFileLeave)="fileLeave($event)"
|
(onFileOver)="fileOver($event)" (onFileLeave)="fileLeave($event)"
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
<div class="card mb-3 shadow">
|
<div class="card mb-3 shadow">
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<h5 class="card-title mb-0">{{title}}</h5>
|
<div class="d-flex justify-content-between align-items-center">
|
||||||
|
<h5 class="card-title mb-0">{{title}}</h5>
|
||||||
|
<ng-content select ="[header-buttons]"></ng-content>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body text-dark">
|
<div class="card-body text-dark">
|
||||||
<ng-content></ng-content>
|
<ng-content select ="[content]"></ng-content>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
Loading…
x
Reference in New Issue
Block a user