jingcai-php/public/phmad521/templates/server/select/server_options.twig

9 lines
199 B
Twig
Executable File

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