mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-24 02:02:23 -04:00
16 lines
431 B
HTML
16 lines
431 B
HTML
<h4>{{viewConfig.title}}</h4>
|
|
|
|
<table class="table table-sm table-hover table-borderless">
|
|
<thead>
|
|
<tr>
|
|
<th>Date created</th>
|
|
<th scope="col">Document</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr *ngFor="let doc of documents" routerLink="/documents/{{doc.id}}">
|
|
<td>{{doc.created | date}}</td>
|
|
<td>{{doc.title}}<app-tag [tag]="t" *ngFor="let t of doc.tags" class="ml-1"></app-tag>
|
|
</tr>
|
|
</tbody>
|
|
</table> |