annotate rhodecode/templates/email_templates/pull_request.html @ 2953:ac83f7a809a6 beta

Add compare button into quick menu
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 23 Oct 2012 14:25:00 +0200
parents acc05c33cc0c
children 400ca827f2c5
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"/>
2815
acc05c33cc0c White space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 2799
diff changeset
3
acc05c33cc0c White space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 2799
diff changeset
4 User <b>${pr_user_created}</b> opened pull request for repository
2799
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}