{% load future i18n url_tags %}{% blocktrans with username=user.username %}Hello {{ username }}!{% endblocktrans %}
{% filter wordwrap:68 %}
{% if SITE_NAME %}{% blocktrans with SITE_NAME=SITE_NAME username=user.username email=email_address %}This message was sent to you because you requested a password reset for your user account at {{ SITE_NAME }} with username "{{ username }}". If you have already done so or don't want to, you can safely ignore this e-mail.{% endblocktrans %}{% else %}{% blocktrans with username=user.username email=email_address %}This message was sent to you because you requested a password reset for your user account with username "{{ username }}". If you have already done so or don't want to, you can safely ignore this e-mail.{% endblocktrans %}{% endif %}

{% blocktrans %}Please click the link below and choose a new password:{% endblocktrans %}

{% url "password_reset_confirm" uid token as the_url %}{% fullurl the_url %}

{% blocktrans with PASSWORD_RESET_TIMEOUT_DAYS=PASSWORD_RESET_TIMEOUT_DAYS count days=PASSWORD_RESET_TIMEOUT_DAYS %}Reset password link will be active for {{ PASSWORD_RESET_TIMEOUT_DAYS }} day.{% plural %}Reset password link will be active for {{ PASSWORD_RESET_TIMEOUT_DAYS }} days.{% endblocktrans %}

{% blocktrans %}Please also be careful to open complete link. Your e-mail client might have broken it into several lines.{% endblocktrans %}

{% blocktrans %}If you have any problems resetting your password or have any other questions just reply to this e-mail.{% endblocktrans %}
{% endfilter %}
{% blocktrans %}Yours,{% endblocktrans %}


{% if SITE_NAME %}{{ SITE_NAME }}
{% endif %}{% url "home" as the_url %}{% fullurl the_url %}