phpmyadmin/templates/dropdown.twig
Maurício Meneghini Fauth 0a80a0ce57 Refactor variable names in Twig templates
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-05-09 23:39:41 -03:00

12 lines
502 B
Twig

<select name="{{ select_name }}"{% if id is not empty %} id="{{ id }}"{% endif -%}
{%- if class is not empty %} class="{{ class }}"{% endif %}>
{% if placeholder is not empty %}
<option value="" disabled="disabled"
{%- if not selected %} selected="selected"{% endif %}>{{ placeholder }}</option>
{% endif %}
{% for option in result_options %}
<option value="{{ option['value'] }}"
{{- option['selected'] ? ' selected="selected"' }}>{{ option['label'] }}</option>
{% endfor %}
</select>