cl-deck-builder2/templates/decks/deck-select.html

14 lines
482 B
HTML
Raw Normal View History

2024-01-21 02:35:35 -05:00
<div class="select is-fullwidth">
<select form="deck-form"
id="deck-load-id"
name="deck-load-id"
onchange="this.options[this.selectedIndex].value && (window.location = '/decks/' + this.options[this.selectedIndex].value + '/view');">
<option value="">Deck Name</option>
{% for deck in decks %}
<option value="{{ deck.id }}"{% if deck.id == id %} selected{% endif %}>
{{ deck.name }}
</option>
{% endfor %}
</select>
</div>