{% extends "email/basemail.html" %} {% load i18n %} {% block subject %}{{ site_name }} - {% blocktrans %}Password reset{% endblocktrans %}{% endblock %} {% block content %} {% with target.title as target_title %} {% with target.user.username as username %}
{% blocktrans %}Dear {{ target_title }},{% endblocktrans %}
{% blocktrans %}You requested a password reset for {{ site_name }}.{% endblocktrans %}
{% blocktrans %}Your username is {{ username }}.{% endblocktrans %}
{% blocktrans %}To reset your password, just follow this link.{% endblocktrans %}
{% blocktrans %}If you think you recieved this email by mistake, you can safely ignore it.{% endblocktrans %}
{% endwith %} {% endwith %} {% endblock %}