Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 line
404B

  1. <div class="select">
  2. <select
  3. form="{{ form }}"
  4. hx-include="{{ hx-include }}"
  5. hx-post="{{ hx-post }}"
  6. hx-target="{{ hx-target }}"
  7. hx-trigger="{{ hx-trigger }}"
  8. id="{{ id }}"
  9. name="{{ name }}">
  10. {% if none %}<option value="">None</option>{% endif %}
  11. {% for option in options %}
  12. <option value="{{ option }}">{{ option }}</option>
  13. {% endfor %}
  14. </select>
  15. </div>