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

9 lines
199 B
Twig

{% for server in select %}
<option
value="{{ server.value }}"
{% if server.selected %}selected="selected"{% endif %}
>
{{- server.label -}}
</option>
{% endfor %}