{% 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 }}. Unfortunately, it cannot be done from this website, because your account is synchronised from a LDAP server. Hence password reset should be handled from the directory.
{% endblocktrans %}
{% trans "In the meantine, you can access your account using this link:" %} {{ login_url }}
{% endblock %}
