template_options.twig 243 B

1234567
  1. <option value="">-- {% trans 'Select a template' %} --</option>
  2. {% for template in templates %}
  3. <option value="{{ template.id }}"{{ template.id == selected_template ? ' selected' }}>
  4. {{ template.name }}
  5. </option>
  6. {% endfor %}