annotate rhodecode/templates/email_templates/pull_request_comment.html @ 3417:fa6ba6727475 beta

further cleanup of UsersGroup Renaming some names ... but trying not to change API or database scheme.
author Mads Kiilerich <madski@unity3d.com>
date Wed, 27 Feb 2013 17:18:43 +0100
parents fc08484c5bf3
children bbe21df7ad48
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2802
0a623ec24b62 part2 of pull-request notification improvements
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
1 ## -*- coding: utf-8 -*-
0a623ec24b62 part2 of pull-request notification improvements
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
2 <%inherit file="main.html"/>
2815
acc05c33cc0c White space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 2802
diff changeset
3
3258
6f71e6f81c9f Fix bold beeing not escaped in emails and make the email form more consistent
Marcin Kuzminski <marcin@python-works.com>
parents: 3054
diff changeset
4 ${_('User %s commented on pull request #%s for repository %s') % ('<b>%s</b>' % pr_comment_user, pr_id, pr_target_repo) |n}
6f71e6f81c9f Fix bold beeing not escaped in emails and make the email form more consistent
Marcin Kuzminski <marcin@python-works.com>
parents: 3054
diff changeset
5 <div>${_('View this comment here')}: ${pr_comment_url}</div>
2802
0a623ec24b62 part2 of pull-request notification improvements
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
6
0a623ec24b62 part2 of pull-request notification improvements
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
7 <p>
0a623ec24b62 part2 of pull-request notification improvements
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
8 ${body}
0a623ec24b62 part2 of pull-request notification improvements
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
9
0a623ec24b62 part2 of pull-request notification improvements
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
10 %if status_change:
3269
7818c8c31c4c html: use &gt; instead of >
Mads Kiilerich <madski@unity3d.com>
parents: 3258
diff changeset
11 <span>${_('New status')} -&gt; ${status_change}</span>
2802
0a623ec24b62 part2 of pull-request notification improvements
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
12 %endif
0a623ec24b62 part2 of pull-request notification improvements
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
13 </p>