Files
arif_grafin/pma/templates/sql/enum_column_dropdown.twig
dev@siliconpin.com a3067c5ad4 first commit
2025-08-07 11:53:41 +05:30

7 lines
202 B
Twig

<select>
<option value="">&nbsp;</option>
{% for value in values %}
<option value="{{ value|raw }}"{{ value in selected_values ? " selected" }}>{{ value|raw }}</option>
{% endfor %}
</select>