pull_request.html
19 lines
| 481 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} | |||
r3258 | <div>${_('View this pull request here')}: ${pr_url}</div> | |||
r3054 | <div>${_('title')}: ${pr_title}</div> | |||
<div>${_('description')}:</div> | ||||
r2799 | <p> | |||
${body} | ||||
</p> | ||||
r3054 | <div>${_('revisions for reviewing')}</div> | |||
r3430 | <pre> | |||
%for r,r_msg in pr_revisions: | ||||
${h.short_id(r)}: | ||||
${h.shorter(r_msg, 256)} | ||||
r2799 | %endfor | |||
r3430 | </pre> | |||