{% extends 'email_base.html' %} {% load i18n %} {% block email_con %} {% autoescape off %}

{% trans "Hi," %}

{% blocktrans with account=user.username %}To reset the password of your account {{ account }} on {{ site_name }}, please click the following link: {% endblocktrans %}
{{ url_base }}{% url 'auth_password_reset_confirm' uidb36=uid token=token %}

{% trans "If you did not request it, just skip it." %}

{% endautoescape %} {% endblock %}