Files
web.ems/phpMyAdmin/templates/display/export/template_options.twig
2024-10-22 10:36:20 +08:00

8 lines
243 B
Twig

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