ticket-system/source/ticketUI/src/app/season-browser/season-browser.component.html
Tara Wilson cb433ba390 Refactoring
Building out UI
Building out API
Fixing Bugs
2024-12-06 17:23:23 -05:00

9 lines
231 B
HTML

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