You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
462 B
13 lines
462 B
{% trans_default_domain 'FOSUserBundle' %}
|
|
{% block subject %}
|
|
{%- autoescape false -%}
|
|
{{ 'registration.email.subject'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}) }}
|
|
{%- endautoescape -%}
|
|
{% endblock %}
|
|
|
|
{% block body_text %}
|
|
{% autoescape false %}
|
|
{{ 'registration.email.message'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}) }}
|
|
{% endautoescape %}
|
|
{% endblock %}
|
|
{% block body_html %}{% endblock %}
|