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