annotate rhodecode/templates/email_templates/pull_request_comment.html @ 3988:072a37c44f58

templates: drop context_bar, use repo_context_bar directly
author Mads Kiilerich <madski@unity3d.com>
date Wed, 12 Jun 2013 01:36:35 +0200
parents 1de8abd9a4e1
children
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"/>
3780
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3449
diff changeset
3
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3449
diff changeset
4 <p>${_('URL')}: <a href="${pr_comment_url}">${pr_comment_url}</a></p>
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3449
diff changeset
5
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3449
diff changeset
6 <h4>${_('%s commented on pull request "%s"') % (pr_comment_user,pr_title) |n}</h4>
2802
0a623ec24b62 part2 of pull-request notification improvements
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
7
0a623ec24b62 part2 of pull-request notification improvements
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
8 %if status_change:
3449
95a226b35b91 codecleaner, fix tabs -> spaces
Marcin Kuzminski <marcin@python-works.com>
parents: 3430
diff changeset
9 %if closing_pr:
3780
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3449
diff changeset
10 <p>${_('Pull request was closed with status')}: <b>${status_change}</b></p>
3449
95a226b35b91 codecleaner, fix tabs -> spaces
Marcin Kuzminski <marcin@python-works.com>
parents: 3430
diff changeset
11 %else:
3780
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3449
diff changeset
12 <p>${_('Pull request changed status')}: <b>${status_change}</b></p>
3449
95a226b35b91 codecleaner, fix tabs -> spaces
Marcin Kuzminski <marcin@python-works.com>
parents: 3430
diff changeset
13 %endif
2802
0a623ec24b62 part2 of pull-request notification improvements
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
14 %endif
3780
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3449
diff changeset
15
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3449
diff changeset
16 <p>${_('Comment')}:</p>
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3449
diff changeset
17 <p>${body}</p>