annotate rhodecode/templates/email_templates/changeset_comment.html @ 2875:f68522e3df79 beta

more logging in pygrack
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 28 Sep 2012 16:26:32 +0200
parents 8eab81115660
children 400ca827f2c5
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>
e5c0f201ca0b Add changeset status change into emails
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
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