1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-25 11:29:57 +04:00
Files
tabler/shared/includes/parts/form/input-datalist.html
2025-04-15 23:18:49 +02:00

9 lines
325 B
HTML

<div class="mb-3">
<label class="form-label">Datalist example</label>
<input class="form-control" list="datalistOptions" placeholder="Type to search..."/>
<datalist id="datalistOptions">
{% for country in flags limit: 10 %}
<option value="{{ country.name | escape }}"/>{% endfor %}
</datalist>
</div>