cl-deck-builder2/templates/builder/_advanced_search_select.html
2024-03-05 22:11:33 -05:00

20 lines
524 B
HTML

<div class="field">
<div class="control">
<div class="select">
<select
form="{{ form }}"
hx-include="{{ hx-include }}"
hx-post="{{ hx-post }}"
hx-target="{{ hx-target }}"
hx-trigger="{{ hx-trigger }}"
id="{{ id }}"
name="{{ name }}">
{% if none %}<option value="">None</option>{% endif %}
{% for option in options %}
<option value="{{ option }}">{{ option }}</option>
{% endfor %}
</select>
</div>
</div>
</div>