mirror of https://github.com/wallabag/wallabag.git
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:
parent
9624b3adfa
commit
d7acde5cc3
|
@ -5,7 +5,7 @@
|
||||||
{% block fos_user_content %}
|
{% block fos_user_content %}
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
{{ 'resetting.check_email'|trans({'%email%': email}) }}
|
<p>{{ 'resetting.check_email'|trans({'%tokenLifetime%': tokenLifetime}) }}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock fos_user_content %}
|
{% endblock fos_user_content %}
|
Loading…
Reference in New Issue