annotate rhodecode/templates/email_templates/changeset_comment.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 400ca827f2c5
children 7818c8c31c4c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1717
7ff304d3028f Notification fixes
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
1 ## -*- coding: utf-8 -*-
7ff304d3028f Notification fixes
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
2 <%inherit file="main.html"/>
7ff304d3028f Notification fixes
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
3
7ff304d3028f Notification fixes
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
4 <h4>${subject}</h4>
7ff304d3028f Notification fixes
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
5
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1717
diff changeset
6 ${body}
2296
e5c0f201ca0b Add changeset status change into emails
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
7
e5c0f201ca0b Add changeset status change into emails
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
8 % if status_change is not None:
e5c0f201ca0b Add changeset status change into emails
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
9 <div>
3054
400ca827f2c5 added i18n to email templates
Marcin Kuzminski <marcin@python-works.com>
parents: 2478
diff changeset
10 ${_('New status$')} -> ${status_change}
2478
8eab81115660 white space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 2296
diff changeset
11 </div>
8eab81115660 white space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 2296
diff changeset
12 % endif