feat: add admin user frontend contract

This commit is contained in:
Bastian Wagner
2026-08-01 09:17:57 +02:00
parent 78761b570b
commit 484c7473fb
20 changed files with 378 additions and 21 deletions

View File

@@ -11,8 +11,8 @@
<h1>Team auswählen</h1>
<mat-nav-list>
@for (player of players(); track player.id) {
<a mat-list-item [routerLink]="['/team', player.team?.id, 'overview']">
<span matListItemTitle>{{ player.team?.name }}</span>
<a mat-list-item [routerLink]="['/team', player.team.id, 'overview']">
<span matListItemTitle>{{ player.team.name }}</span>
<span matListItemLine>{{ player.firstName }} {{ player.lastName }}</span>
</a>
}