{% extends "oscar/communication/emails/base.txt" %}
{% load i18n %}
{% load url_tags %}

{% block body %}{% autoescape off %}{% blocktrans with name=site.name %}
You're receiving this email because your password has been changed at {{ name }}.
{% endblocktrans %}

{% trans "If it wasn't you who changed it, please reset your password immediately:" %}
{% absolute_url site.domain reset_url %}

{% trans "Otherwise, you can ignore this email." %}

{% endautoescape %}{% endblock %}
