pull_request.html
18 lines
| 428 B
| text/html
|
HtmlLexer
r2799 | ## -*- coding: utf-8 -*- | |||
<%inherit file="main.html"/> | ||||
r2815 | ||||
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> | ||||
r2799 | <p> | |||
${body} | ||||
</p> | ||||
r3054 | <div>${_('revisions for reviewing')}</div> | |||
r2799 | <ul> | |||
%for r in pr_revisions: | ||||
<li>${r}</li> | ||||
%endfor | ||||
</ul> | ||||
r3054 | ${_('View this pull request here')}: ${pr_url} | |||