aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/templates/email_templates/password_reset.html
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2013-02-25 21:27:52 +0100
committerMarcin Kuzminski <marcin@python-works.com>2013-02-25 21:27:52 +0100
commit920bb05d6b6351bdaa8390cd1b08a4243f20d1b7 (patch)
tree98af36837679f650f09bbbd7544ce333b69f2b25 /rhodecode/templates/email_templates/password_reset.html
parentc5160f484d6c51761e4e1b14824a7279597941a5 (diff)
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 --HG-- extra : source : 5c310b7b01cec6472e9c144123ce13ebbec83148
Diffstat (limited to 'rhodecode/templates/email_templates/password_reset.html')
-rw-r--r--rhodecode/templates/email_templates/password_reset.html15
1 files changed, 7 insertions, 8 deletions
diff --git a/rhodecode/templates/email_templates/password_reset.html b/rhodecode/templates/email_templates/password_reset.html
index 3978f3ec..936f9941 100644
--- a/rhodecode/templates/email_templates/password_reset.html
+++ b/rhodecode/templates/email_templates/password_reset.html
@@ -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.")}