mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-31 18:47:11 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
 | |
| <app-page-header title="Dashboard">
 | |
| </app-page-header>
 | |
| 
 | |
| <p>... This space for rent</p>
 | |
| 
 | |
| <div class='row'>
 | |
|   <div class="col-lg">
 | |
|     <ng-container *ngFor="let v of savedDashboardViews">
 | |
|       <h4>{{v.viewConfig.title}}</h4>
 | |
| 
 | |
|       <table class="table table-striped table-sm">
 | |
|         <thead>
 | |
|         <tr>
 | |
|           <th scope="col">Document</th>
 | |
|         </tr>
 | |
|         </thead>
 | |
|         <tbody>
 | |
|         <tr *ngFor="let doc of v.documents" routerLink="/documents/{{doc.id}}">
 | |
|           <td>{{ doc.title }}</td>
 | |
|         </tr>
 | |
|         </tbody>
 | |
|       </table>
 | |
|   
 | |
|   
 | |
| 
 | |
|     </ng-container>
 | |
| 
 | |
|   </div>
 | |
|   <div class="col-lg">
 | |
|     <h4>Statistics</h4>
 | |
|     <p>Documents in inbox: {{statistics.documents_inbox}}</p>
 | |
|     <p>Total documents: {{statistics.documents_total}}</p>
 | |
|     <h4>Upload new Document</h4>
 | |
|     <form>
 | |
|       <ngx-file-drop
 | |
|         dropZoneLabel="Drop documents here"
 | |
|         (onFileDrop)="dropped($event)"
 | |
|         (onFileOver)="fileOver($event)"
 | |
|         (onFileLeave)="fileLeave($event)"
 | |
|         dropZoneClassName="bg-light mt-4 card">
 | |
| 
 | |
|       </ngx-file-drop>
 | |
|     </form>
 | |
|     <h5 class="mt-3">Document conumser status</h5>
 | |
|     <div class="card bg-light">
 | |
|       <div class="card-body">
 | |
|         <p class="card-text"><strong>Filename.pdf:</strong> OCR for ger...</p>
 | |
|         <p><ngb-progressbar type="info" [value]="50"></ngb-progressbar></p>
 | |
|       </div>
 | |
|     </div>
 | |
|     <div class="card bg-light">
 | |
|       <div class="card-body">
 | |
|         <p class="card-text"><strong>Filename2.pdf:</strong> FAILED: language ITA not found</p>
 | |
|         <p><ngb-progressbar type="danger" [value]="100"></ngb-progressbar></p>
 | |
|       </div>
 | |
|     </div>
 | |
|   </div>
 | |
| </div>
 |