comparison rhodecode/templates/email_templates/password_reset.html @ 3468:bbd72d82060a

moved out password reset tasks from celery, it doesn't make any sense to keep them there, additionally they are broken in when executing _(), and url() calls. This fixes issue #572
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 25 Feb 2013 21:27:52 +0100
parents 294413a5f11d
children 1de8abd9a4e1
comparison
equal deleted inserted replaced
3467:80dc3a194d43 3468:bbd72d82060a
1 ## -*- coding: utf-8 -*- 1 ## -*- coding: utf-8 -*-
2 <%inherit file="main.html"/> 2 <%inherit file="main.html"/>
3 3
4 ${_('Hello')} ${user} 4 <h4>${_('Hello %s') % user}</h4>
5 5 <div>${_('We received a request to create a new password for your account.')}</div>
6 ${_('We received a request to create a new password for your account.')} 6 <div>${_('You can generate it by clicking following URL')}:</div>
7 7 <pre>
8 ${_('You can generate it by clicking following URL')}:
9
10 ${reset_url} 8 ${reset_url}
11 9 </pre>
12 ${_("If you didn't request new password please ignore this email.")} 10 <br/>
11 ${_("If you did not request new password please ignore this email.")}