mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 03:27:23 +08:00
11 lines
296 B
Twig
Executable File
11 lines
296 B
Twig
Executable File
<select class="form-control" name="{{ id }}" {{ disabled ? 'disabled=disabled' : '' }}>
|
|
{% for option in options %}
|
|
<option
|
|
value="{{ option.value }}"
|
|
{{ selected == option.value ? 'selected=selected' : '' }}
|
|
>
|
|
{{ option.name }}
|
|
</option>
|
|
{% endfor %}
|
|
</select>
|