pull_request_comment.html
18 lines
| 465 B
| text/html
|
HtmlLexer
r2802 | ## -*- coding: utf-8 -*- | |||
<%inherit file="main.html"/> | ||||
r3430 | ${_('Pull request #%s for repository %s') % (pr_id, pr_target_repo) |n} | |||
##message from user goes here | ||||
<p> | ||||
${pr_comment_user}: <br/> | ||||
${body} | ||||
</p> | ||||
r3258 | <div>${_('View this comment here')}: ${pr_comment_url}</div> | |||
r2802 | ||||
%if status_change: | ||||
r3430 | %if closing_pr: | |||
<span>${_('Closing pull request with status')} -> ${status_change}</span> | ||||
%else: | ||||
<span>${_('New status')} -> ${status_change}</span> | ||||
%endif | ||||
r2802 | %endif | |||
</p> | ||||