view rhodecode/templates/email_templates/changeset_comment.html @ 3713:e45f8cefd7d9 beta

implement __ne__
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 08 Apr 2013 20:38:37 +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>