{% extends "mails/project.html" %}{% load i18n l10n pages staticfiles %} {% block title %}{% trans "Password Reset" %}{% endblock %} {% block content %} {% if user.name %}

{% trans "Hi " %}{{ user.name }},

{% else %}

{% trans "Hi," %}

{% endif %}

{% blocktrans with site_name=site.name%}You're receiving this email because you requested a password reset for your user account at {{ site_name }}.{% endblocktrans %}

{% trans "To reset your password" %} {% trans "click here" %}

{% trans "Or you can copy & paste the following link in your browser address bar:" %} http://{{ site.domain }}{{ path }}

{% trans "If you did not request this change ignore this email." %}

{% blocktrans with site_name=site.name %}Thanks,
The {{ site_name }} team{% endblocktrans %}

{% endblock %}