comparison 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
comparison
equal deleted inserted replaced
2798:091e99b29fd4 2799:493646d3146f
1 ## -*- coding: utf-8 -*-
2 <%inherit file="main.html"/>
3
4 User <b>${pr_user_created}</b> opened pull request for repository
5 ${pr_repo_url} and wants you to review changes.
6
7 <div>title: ${pr_title}</div>
8 <div>description:</div>
9 <p>
10 ${body}
11 </p>
12
13 <div>revisions for reviewing</div>
14 <ul>
15 %for r in pr_revisions:
16 <li>${r}</li>
17 %endfor
18 </ul>
19
20 View this pull request here: ${pr_url}