17 lines
558 B
HTML
17 lines
558 B
HTML
<div *ngIf="shows$ | async as shows" @fade>
|
|
<app-card heading="Bitte eine Veranstaltung auswählen" *ngIf="visible">
|
|
<p *ngIf="!shows.length">
|
|
Es ist derzeit keine Veranstaltung vorhanden
|
|
</p>
|
|
|
|
<div *ngIf="shows.length>0" class="list">
|
|
<button mat-stroked-button *ngFor="let show of shows" (click)="selectShow(show)">
|
|
<app-user-name [userId]="show.owner"></app-user-name>
|
|
,
|
|
{{ show.showType | showType }},
|
|
{{ show.date.toDate() | date: "dd.MM.yyyy" }}
|
|
</button>
|
|
</div>
|
|
</app-card>
|
|
</div>
|