Licitator 1.0
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

5 years ago
  1. {% trans_default_domain 'FOSUserBundle' %}
  2. {% block subject %}
  3. {%- autoescape false -%}
  4. {{ 'registration.email.subject'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}) }}
  5. {%- endautoescape -%}
  6. {% endblock %}
  7. {% block body_text %}
  8. {% autoescape false %}
  9. {{ 'registration.email.message'|trans({'%username%': user.username, '%confirmationUrl%': confirmationUrl}) }}
  10. {% endautoescape %}
  11. {% endblock %}
  12. {% block body_html %}{% endblock %}