diff 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
line wrap: on
line diff
--- a/rhodecode/templates/email_templates/password_reset.html	Tue Feb 26 13:36:38 2013 +0100
+++ b/rhodecode/templates/email_templates/password_reset.html	Mon Feb 25 21:27:52 2013 +0100
@@ -1,12 +1,11 @@
 ## -*- coding: utf-8 -*-
 <%inherit file="main.html"/>
 
-${_('Hello')} ${user}
-
-${_('We received a request to create a new password for your account.')}
-
-${_('You can generate it by clicking following URL')}:
-
+<h4>${_('Hello %s') % user}</h4>
+<div>${_('We received a request to create a new password for your account.')}</div>
+<div>${_('You can generate it by clicking following URL')}:</div>
+<pre>
 ${reset_url}
-
-${_("If you didn't request new password please ignore this email.")}
+</pre>
+<br/>
+${_("If you did not request new password please ignore this email.")}