annotate rhodecode/templates/email_templates/pull_request.html @ 2799:493646d3146f beta

Nicer email notifications about pull-request
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 04 Sep 2012 02:18:59 +0200
parents
children acc05c33cc0c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2799
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
1 ## -*- coding: utf-8 -*-
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
2 <%inherit file="main.html"/>
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
3
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
4 User <b>${pr_user_created}</b> opened pull request for repository
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
5 ${pr_repo_url} and wants you to review changes.
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
6
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
7 <div>title: ${pr_title}</div>
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
8 <div>description:</div>
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
9 <p>
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
10 ${body}
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
11 </p>
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
12
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
13 <div>revisions for reviewing</div>
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
14 <ul>
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
15 %for r in pr_revisions:
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
16 <li>${r}</li>
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
17 %endfor
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
18 </ul>
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
19
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
20 View this pull request here: ${pr_url}