{% extends "emails/body_base.txt" %}
{% load i18n %}

{% block content %}{% trans "Hi," %}
{% blocktrans trimmed with hostname=request.get_host %}
You requested reset of your password on {{ hostname }}, but no account was found associated with this address.
{% endblocktrans %}
{% if registration_url %}{% trans "You can create an account here:" %} {{ registration_url }}.{% endif %}
{% endblock %}
