Translated using Weblate (Indonesian)
[phpmyadmin.git] / templates / dropdown.twig
blob6258ca773d6d655c6e93fcc805a140a8471ad62b
1 <select name="{{ select_name }}"{% if id is not empty %} id="{{ id }}"{% endif -%}
2     {%- if class is not empty %} class="{{ class }}"{% endif %}>
3 {% if placeholder is not empty %}
4     <option value="" disabled="disabled"
5     {%- if not selected %} selected="selected"{% endif %}>{{ placeholder }}</option>
6 {% endif %}
7 {% for option in result_options %}
8 <option value="{{ option['value'] }}"
9     {{- option['selected'] ? ' selected="selected"' }}>{{ option['label'] }}</option>
10 {% endfor %}
11 </select>