Use the correct template

When resetting the password, the overriden template we used wasn’t well spelled.

And since we are using a locked version of FOSUser (on a custom commit), the translation of `resetting.check_email` is wrong in any language but english.
This commit is contained in:
Jeremy Benoist 2016-11-20 20:07:47 +01:00
parent 9624b3adfa
commit d7acde5cc3
No known key found for this signature in database
GPG Key ID: BCA73962457ACC3C
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
{% block fos_user_content %}
<div class="card-content">
<div class="row">
{{ 'resetting.check_email'|trans({'%email%': email}) }}
<p>{{ 'resetting.check_email'|trans({'%tokenLifetime%': tokenLifetime}) }}</p>
</div>
</div>
{% endblock fos_user_content %}