##// END OF EJS Templates
pullrequests: fix non-js defaults for repo owner...
pullrequests: fix non-js defaults for repo owner Owner of default_other_repo was never sent to the the template ... and the template would fail if it had been sent. Instead we set default_other_repo_info to the other_repos_info struct and use that to find the owner.

File last commit:

r3505:42e5812b beta
r3595:9bc05294 beta
Show More
pull_request.html
18 lines | 510 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}
Fix bold beeing not escaped in emails and make the email form more consistent
r3258 <div>${_('View this pull request here')}: ${pr_url}</div>
added i18n to email templates
r3054 <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 pr email
r3505 <p style="white-space: pre-wrap;">
notifications changes...
r3430 %for r,r_msg in pr_revisions:
nicer pr email
r3505 <b>${h.short_id(r)}</b>:
${h.shorter(r_msg, 256)}
Nicer email notifications about pull-request
r2799 %endfor
nicer pr email
r3505 </p>