annotate rhodecode/templates/email_templates/pull_request.html @ 4147:1c8f818787b3 rhodecode-2.2.5-gpl

old style: show the full link box on summary page - no overlap or truncation
author Mads Kiilerich <madski@unity3d.com>
date Wed, 02 Jul 2014 19:03:23 -0400
parents 1de8abd9a4e1
children
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
3780
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
4 <p>${_('URL')}: <a href="${pr_url}">${pr_url}</a></p>
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
5
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
6 <h4>${_('%s opened a pull request for repository %s and wants you to review changes.') % (pr_user_created,pr_repo_url) |n}</h4>
2799
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
7
3780
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
8 <p>${_('Title')}: <b>${pr_title}</b></p>
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
9 <p>${_('Description')}:</p>
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
10 <p style="white-space: pre-wrap;">${body}</p>
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
11
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
12 <p>${_('Changesets')}:</p>
3505
42e5812b956e nicer pr email
Marcin Kuzminski <marcin@python-works.com>
parents: 3430
diff changeset
13 <p style="white-space: pre-wrap;">
3430
bbe21df7ad48 notifications changes
Marcin Kuzminski <marcin@python-works.com>
parents: 3258
diff changeset
14 %for r,r_msg in pr_revisions:
3505
42e5812b956e nicer pr email
Marcin Kuzminski <marcin@python-works.com>
parents: 3430
diff changeset
15 <b>${h.short_id(r)}</b>:
42e5812b956e nicer pr email
Marcin Kuzminski <marcin@python-works.com>
parents: 3430
diff changeset
16 ${h.shorter(r_msg, 256)}
3780
1de8abd9a4e1 emails: try to improve wording and layout - 1st iteration
Mads Kiilerich <madski@unity3d.com>
parents: 3505
diff changeset
17
2799
493646d3146f Nicer email notifications about pull-request
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
18 %endfor
3505
42e5812b956e nicer pr email
Marcin Kuzminski <marcin@python-works.com>
parents: 3430
diff changeset
19 </p>