view rhodecode/templates/email_templates/pull_request.html @ 3636:ddc4c12f00fb beta

fixed issues with importing non-ascii repo names
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 29 Mar 2013 23:49:21 +0100
parents 42e5812b956e
children 1de8abd9a4e1
line wrap: on
line source

## -*- coding: utf-8 -*-
<%inherit file="main.html"/>

${_('User %s opened pull request for repository %s and wants you to review changes.') % (('<b>%s</b>' % pr_user_created),pr_repo_url) |n}
<div>${_('View this pull request here')}: ${pr_url}</div>
<div>${_('title')}: ${pr_title}</div>
<div>${_('description')}:</div>
<p>
${body}
</p>

<div>${_('revisions for reviewing')}</div>
<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>