view rhodecode/templates/email_templates/pull_request_comment.html @ 4147:1c8f818787b3 rhodecode-2.2.5-gpl

old style: show the full link box on summary page - no overlap or truncation
author Mads Kiilerich <madski@unity3d.com>
date Wed, 02 Jul 2014 19:03:23 -0400
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>