2020-12-14 19:26:36 +01:00
|
|
|
<app-widget-frame [title]="savedView.name">
|
2020-11-07 12:05:15 +01:00
|
|
|
|
2022-02-17 00:16:57 +01:00
|
|
|
<a header-buttons [routerLink]="[]" (click)="showAll()" i18n>Show all</a>
|
2020-11-29 23:32:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<table content class="table table-sm table-hover table-borderless">
|
2020-11-22 22:35:39 +01:00
|
|
|
<thead>
|
|
|
|
|
<tr>
|
2020-12-23 15:09:39 +01:00
|
|
|
<th i18n>Created</th>
|
|
|
|
|
<th scope="col" i18n>Title</th>
|
2020-11-22 22:35:39 +01:00
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr *ngFor="let doc of documents" routerLink="/documents/{{doc.id}}">
|
2021-01-17 00:15:45 +01:00
|
|
|
<td>{{doc.created | customDate}}</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>
|
|
|
|
|
|
2020-11-22 22:49:37 +01:00
|
|
|
</app-widget-frame>
|