Files @ 4e429252f3ee
Branch filter:

Location: kallithea/rhodecode/templates/email_templates/pull_request_comment.html

Marcin Kuzminski
Don't use -p flag together with -s in git calls. Latest
git version changes behaviour of such call changing the output.

In all the calls where -p -s was used we're only interested in
list of changesets and not the diff.
## -*- coding: utf-8 -*-
<%inherit file="main.html"/>

<p>${_('URL')}: <a href="${pr_comment_url}">${pr_comment_url}</a></p>

<h4>${_('%s commented on pull request "%s"') % (pr_comment_user,pr_title) |n}</h4>

%if status_change:
    %if closing_pr:
       <p>${_('Pull request was closed with status')}: <b>${status_change}</b></p>
    %else:
       <p>${_('Pull request changed status')}: <b>${status_change}</b></p>
    %endif
%endif

<p>${_('Comment')}:</p>
<p>${body}</p>