mirror of
https://github.com/tabler/tabler.git
synced 2025-12-25 11:29:57 +04:00
9 lines
325 B
HTML
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>
|