pull_request.html
18 lines
| 510 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> | |||
r3505 | <p style="white-space: pre-wrap;"> | |||
r3430 | %for r,r_msg in pr_revisions: | |||
r3505 | <b>${h.short_id(r)}</b>: | |||
${h.shorter(r_msg, 256)} | ||||
r2799 | %endfor | |||
r3505 | </p> | |||