pull/215/head
Aevann 2023-10-08 21:44:12 +03:00
parent bdb895470f
commit 97ef3e0589
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@
{%- set hole_placeholder = 'Required' if HOLE_REQUIRED else 'Optional' -%}
<input list="holes" autocomplete="off" id="hole" class="form-control" form="submitform" name="hole" data-nonce="{{g.nonce}}" data-oninput="savetext()" {% if hole %}value="{{hole}}"{% endif %} placeholder="{{hole_placeholder}}" {% if HOLE_REQUIRED %}required{% endif %}>
<datalist id="holes">
{% for s in HOLES %}
<option value="{{s}}"></option>
{% for h in HOLES %}
<option value="{{h}}"></option>
{% endfor %}
</datalist>
</div>