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

21 lines
598 B
HTML
Raw Normal View History

<app-widget-frame [title]="savedView.name">
2020-11-22 22:35:39 +01:00
2020-11-29 23:32:03 +01:00
<a header-buttons [routerLink]="" (click)="showAll()">Show all</a>
<table content class="table table-sm table-hover table-borderless">
2020-11-22 22:35:39 +01:00
<thead>
<tr>
<th>Created</th>
<th scope="col">Title</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let doc of documents" routerLink="/documents/{{doc.id}}">
<td>{{doc.created | date}}</td>
2020-12-16 16:44:54 +01:00
<td>{{doc.title | documentTitle}}<app-tag [tag]="t" *ngFor="let t of doc.tags$ | async" class="ml-1"></app-tag>
2020-11-22 22:35:39 +01:00
</tr>
</tbody>
</table>
</app-widget-frame>