view rhodecode/templates/email_templates/pull_request.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_url}">${pr_url}</a></p>

<h4>${_('%s opened a pull request for repository %s and wants you to review changes.') % (pr_user_created,pr_repo_url) |n}</h4>

<p>${_('Title')}: <b>${pr_title}</b></p>
<p>${_('Description')}:</p>
<p style="white-space: pre-wrap;">${body}</p>

<p>${_('Changesets')}:</p>
<p style="white-space: pre-wrap;">
%for r,r_msg in pr_revisions:
<b>${h.short_id(r)}</b>:
${h.shorter(r_msg, 256)}

%endfor
</p>