Files
arif_grafin/pma/templates/export/template_options.twig
dev@siliconpin.com a3067c5ad4 first commit
2025-08-07 11:53:41 +05:30

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 %}