view rhodecode/templates/email_templates/changeset_comment.html @ 3676:9d2db665ef31 beta

pagination in pull-requests page + UI
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 04 Apr 2013 22:33:41 +0200
parents bbe21df7ad48
children 1de8abd9a4e1
line wrap: on
line source

## -*- coding: utf-8 -*-
<%inherit file="main.html"/>
##message from user goes here
<p>
${cs_comment_user}: <br/>
${body}
</p>
%if status_change:
    <span>${_('New status')} -&gt; ${status_change}</span>
%endif
<div>${_('View this comment here')}: ${cs_comment_url}</div>

<pre>
${_('Repo')}: ${cs_target_repo}
${_('Changeset')}: ${h.short_id(raw_id)}
${_('desc')}: ${h.shorter(message, 256)}
</pre>