Files
web.ems/phpMyAdmin/templates/display/export/template_options.twig
agtuser 16a3fd1e1b init
2024-11-11 17:56:00 +08:00

8 lines
243 B
Twig
Executable File

<option value="">-- {% trans 'Select a template' %} --</option>
{% for template in templates %}
<option value="{{ template.id }}"{{ template.id == selected_template ? ' selected' }}>
{{ template.name }}
</option>
{% endfor %}