This commit is contained in:
Bastian Wagner
2026-06-10 15:44:18 +02:00
parent 67b5fb8532
commit e1cc78ca27
22 changed files with 749 additions and 26 deletions

View File

@@ -124,6 +124,9 @@
<mat-card-title>{{ list.name }}</mat-card-title>
<mat-card-subtitle>
{{ kindLabel(list.kind) }} - {{ progressLabel(list) }}
@if (list.accessRole === 'collaborator') {
- geteilt von {{ list.ownerName || list.ownerEmail || 'Owner' }}
}
</mat-card-subtitle>
</mat-card-header>
@@ -141,6 +144,12 @@
<mat-icon aria-hidden="true">schedule</mat-icon>
{{ list.updatedAt | date: 'dd.MM.yyyy' }}
</span>
@if (list.collaborators.length > 0) {
<span>
<mat-icon aria-hidden="true">group</mat-icon>
{{ list.collaborators.length }} Mitwirkende
</span>
}
</div>
@if (list.items.length > 0) {