Leitgedanken/pma/templates/file_select_options.twig
2022-11-21 09:47:28 +01:00

6 lines
152 B
Twig

{% for file in filesList %}
<option value="{{ file }}"{% if file == active %} selected="selected"{% endif %}>
{{ file }}
</option>
{% endfor %}