paperless-ngx/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html

22 lines
737 B
HTML
Raw Normal View History

<app-widget-frame [title]="savedView.name" [loading]="loading">
<a class="btn-link" header-buttons [routerLink]="[]" (click)="showAll()" i18n>Show all</a>
2020-11-29 23:32:03 +01:00
2022-03-08 14:49:40 -08:00
<table content class="table table-sm table-hover table-borderless mb-0">
2020-11-22 22:35:39 +01:00
<thead>
<tr>
<th i18n>Created</th>
<th scope="col" i18n>Title</th>
2020-11-22 22:35:39 +01:00
</tr>
</thead>
<tbody>
2022-05-15 23:25:46 -07:00
<tr *ngFor="let doc of documents" (click)="openDocumentsService.openDocument(doc)">
2022-05-15 21:09:42 -07:00
<td>{{doc.created_date | customDate}}</td>
2022-03-23 22:03:10 -07:00
<td>{{doc.title | documentTitle}}<app-tag [tag]="t" *ngFor="let t of doc.tags$ | async" class="ms-1" (click)="clickTag(t); $event.stopPropagation();"></app-tag></td>
2020-11-22 22:35:39 +01:00
</tr>
</tbody>
</table>
2020-11-22 22:49:37 +01:00
</app-widget-frame>