{% extends "emails/base.html" %} {% load i18n %} {% load app_customization %} {% block content %} {% email_language_toggle as toggle %} {% if toggle %} {% get_available_languages as LANGUAGES %} {% for langs in LANGUAGES %} {% language langs.0 %} {% get_current_language as LANGUAGE_CODE %}
{% trans "Hello" %} {{ user.name }},

{% trans "You have requested a new password. Please follow this link to set 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." %}
{% endlanguage %} {% endfor %} {% else %} {% trans "Hello" %} {{ user.name }},

{% trans "You have requested a new password. Please follow this link to set 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." %} {% endif %} {% endblock %}