optimize remote #3
This commit is contained in:
14
src/app/modules/presentation/select/select.component.html
Normal file
14
src/app/modules/presentation/select/select.component.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<div *ngIf="visible && shows$ | async as shows" @fade>
|
||||
<app-card heading="Bitte eine Veranstaltung auswählen">
|
||||
<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)">
|
||||
{{ show.showType | showType }},
|
||||
{{ show.date.toDate() | date: "dd.MM.yyyy" }}
|
||||
</button>
|
||||
</div>
|
||||
</app-card>
|
||||
</div>
|
||||
Reference in New Issue
Block a user