{% extends 'pinax/notifications/body.txt' %}
{% load i18n %}

{% block message %}
    {% blocktrans with first_name=user.first_name last_name=user.last_name username=user.username %}
        Hi {{ first_name }} {{ last_name }}, you’ve told us you have forgotten your password linked to your username: “{{ username }}”.
    {% endblocktrans %}
    {% trans ' No problem, just click the button below to reset your password.' %}
    {% url 'password_reset_confirm' uidb64=uid token=token as button_url %}
    {{ button_url }}
    {% trans '​If you didn’t ask to change your password, don’t worry! Your password is still safe and you can delete this email.' %}
{% endblock %}
