ticket-system/source/ticketUI/src/app/components/season-browser/season-browser.component.html
Tara Wilson 2358ef1c96 Adding patron info
Adding several components
Restructuring UI
2024-12-06 19:52:20 -05:00

10 lines
261 B
HTML

<div class="card">
<label for="seasons">Season</label>
<select name="Seasons" id="seasons">
<option>No Season</option>
@for(season of seasons$(); track season.id) {
<option [value]="season.id">{{season.name}}</option>
}
</select>
</div>