http service tests

This commit is contained in:
2025-10-24 01:30:39 +02:00
parent 10d004ded8
commit 21722cef59
4 changed files with 85 additions and 15 deletions

View File

@@ -1,3 +1,24 @@
<p>Diese Komponente später löschen, nur ein Proof Of Concept für die Modellverwendung!</p>
<p>{{ ticket.id }}</p>
<p>{{ ticket.code }}</p>
<div>
<h2>Kinosaal Übersicht</h2>
<ul>
@for (kinosaal of kinosaele; track kinosaal.id) {
<li>
{{ kinosaal.id }} - {{ kinosaal.name }}
</li>
} @empty {
<li>
Keine Kinosäle vorhanden.
</li>
}
</ul>
<div>
<input
type="text"
placeholder="Neuer Kinosaal Name"
[(ngModel)]="newKinosaalName"
/>
<button (click)="addKinosaal()">Hinzufügen</button>
</div>
</div>