view rhodecode/templates/email_templates/changeset_comment.html @ 3533:5462bb077b05 beta

Adding context bar to the changeset page
author Leonardo <leo@unity3d.com>
date Wed, 06 Mar 2013 17:28:18 +0100
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>