{% extends 'base.html.twig' %} {% block title %}{{ 'admin.email_template_edit.title'|trans }}{% endblock %} {% block stylesheets %} {% endblock %} {% block sidebar %} {% endblock %} {% block body %}

{{ 'admin.email_template_edit.title'|trans({'%code%': template.code, '%locale%': template.locale|upper}) }}

{{ 'admin.email_template_edit.back_btn'|trans }} {% if is_granted('ROLE_SUPER_ADMIN') or permission_service.hasPermission(app.user, 'preview_email_templates') %} {{ 'admin.email_template_edit.preview_btn'|trans }} {% endif %}
{{ 'admin.email_template_edit.form_title'|trans }}
{{ form_start(form) }}
{{ form_row(form.code) }}
{{ form_row(form.locale) }}
{{ form_row(form.subject) }}
{{ form_label(form.htmlContent) }} {{ form_widget(form.htmlContent, {'attr': {'class': 'html-editor form-control'}}) }} {{ form_help(form.htmlContent) }} {{ form_errors(form.htmlContent) }}
{{ form_row(form.textContent) }}
{{ 'admin.email_templates.variables.title'|trans }}
{{ 'admin.email_template_edit.cancel_btn'|trans }}
{{ form_end(form) }}
{% endblock %} {% block javascripts %} {% endblock %}