view rhodecode/templates/email_templates/pull_request_comment.html @ 4021:b619842f173d

removed obsolete separator in closed branches view
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 19 Jun 2013 00:23:51 +0200
parents 1de8abd9a4e1
children
line wrap: on
line source

## -*- 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>