Files
server/opt/psa/phpMyAdmin/templates/export/template_options.twig
cutemeli 0bfc6c8425 Initial
2025-12-22 10:32:59 +00:00

8 lines
258 B
Twig

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