{% extends "emails/base.html" %}
{% load i18n %}
{% load settings_value %}
{% block content %}
{% trans "Dear" %} {{ user.name }},
{% trans "You requested a new password for "%}{% settings_value 'SITE_TITLE' %}". "{% trans "Please follow this link to configure a new password." %}
{{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}
{% trans "You can ignore this e-mail if you did not request a new password." %}
{% endblock %}