##// END OF EJS Templates
fixed issue with displaying repos in groups view (without lightweight dashboard), added tests for this case
fixed issue with displaying repos in groups view (without lightweight dashboard), added tests for this case

File last commit:

r3149:68f9c216 beta
r3167:87258a13 beta
Show More
pull_request.html
17 lines | 443 B | text/html | HtmlLexer
Nicer email notifications about pull-request
r2799 ## -*- coding: utf-8 -*-
<%inherit file="main.html"/>
White space cleanup
r2815
fixes #691: Notifications for pull requests: move link to pull request to the top...
r3121 ${_('User %s opened pull request for repository %s and wants you to review changes.') % (('<b>%s</b>' % pr_user_created),pr_repo_url) |n}
added i18n to email templates
r3054 <div>${_('title')}: ${pr_title}</div>
<div>${_('description')}:</div>
fixes #691: Notifications for pull requests: move link to pull request to the top...
r3121 <div>${_('View this pull request here')}: ${pr_url}</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>