annotate rhodecode/templates/email_templates/pull_request.html @ 3284:c36fee21cd83 beta

quick repo list: public/private icon control should only control icons, not repo visibility
author Mads Kiilerich <madski@unity3d.com>
date Wed, 30 Jan 2013 18:32:54 +0100
parents 6f71e6f81c9f
children bbe21df7ad48
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
3121
3274ba9f1489 fixes #691: Notifications for pull requests: move link to pull request to the top
Marcin Kuzminski <marcin@python-works.com>
parents: 3054
diff changeset
4 ${_('User %s opened pull request for repository %s and wants you to review changes.') % (('<b>%s</b>' % pr_user_created),pr_repo_url) |n}
3258
6f71e6f81c9f Fix bold beeing not escaped in emails and make the email form more consistent
Marcin Kuzminski <marcin@python-works.com>
parents: 3149
diff changeset
5 <div>${_('View this pull request here')}: ${pr_url}</div>
3054
400ca827f2c5 added i18n to email templates
Marcin Kuzminski <marcin@python-works.com>
parents: 2815
diff changeset
6 <div>${_('title')}: ${pr_title}</div>
400ca827f2c5 added i18n to email templates
Marcin Kuzminski <marcin@python-works.com>
parents: 2815
diff changeset
7 <div>${_('description')}:</div>
2799
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
8 <p>
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
9 ${body}
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
10 </p>
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
11
3054
400ca827f2c5 added i18n to email templates
Marcin Kuzminski <marcin@python-works.com>
parents: 2815
diff changeset
12 <div>${_('revisions for reviewing')}</div>
2799
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
13 <ul>
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
14 %for r in pr_revisions:
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
15 <li>${r}</li>
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
16 %endfor
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
17 </ul>