Files
web.ems/phpMyAdmin/templates/dropdown.twig
agtuser 16a3fd1e1b init
2024-11-11 17:56:00 +08:00

12 lines
502 B
Twig
Executable File

<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>