template_options.twig 258 B

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