##// END OF EJS Templates
fixed tests, made the journal filter consistent accross different databases
fixed tests, made the journal filter consistent accross different databases

File last commit:

r3054:400ca827 beta
r3072:86e087bd beta
Show More
pull_request.html
18 lines | 428 B | text/html | HtmlLexer
Nicer email notifications about pull-request
r2799 ## -*- coding: utf-8 -*-
<%inherit file="main.html"/>
White space cleanup
r2815
added i18n to email templates
r3054 ${_('User %s opened pull request for repository %s and wants you to review changes.') % ('<b>%s</b>' % pr_user_created,pr_repo_url)}
<div>${_('title')}: ${pr_title}</div>
<div>${_('description')}:</div>
Nicer email notifications about pull-request
r2799 <p>
${body}
</p>
added i18n to email templates
r3054 <div>${_('revisions for reviewing')}</div>
Nicer email notifications about pull-request
r2799 <ul>
%for r in pr_revisions:
<li>${r}</li>
%endfor
</ul>
added i18n to email templates
r3054 ${_('View this pull request here')}: ${pr_url}