Files @ 8bd957e6cccb
Branch filter:

Location: kallithea/kallithea/templates/email_templates/password_reset.html

Mads Kiilerich
tests: make the html from mail template dump valid html even when the html mails contain html
## -*- coding: utf-8 -*-
<%inherit file="main.html"/>

<h4>${_('Hello %s') % user}</h4>

<p>${_('We have received a request to reset the password for your account.')}</p>
%if reset_token is None:
<p>${_('This account is however managed outside this system and the password cannot be changed here.')}</p>
%else:
<p>${_('To set a new password, click the following link')}:</p>
<p><a href="${reset_url}">${reset_url}</a></p>

<p>${_("Should you not be able to use the link above, please type the following code into the password reset form")}: <code>${reset_token}</code></p>
%endif

<p>${_("If it weren't you who requested the password reset, just disregard this message.")}</p>