view rhodecode/templates/email_templates/changeset_comment.html @ 3983:2e0ccba6dd6b

css: show status labels clearly - not pseudo-invisible grey
author Mads Kiilerich <madski@unity3d.com>
date Wed, 12 Jun 2013 01:36:35 +0200
parents 1de8abd9a4e1
children 77d8917d1d57
line wrap: on
line source

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

<p>${_('URL')}: <a href="${cs_comment_url}">${cs_comment_url}</a></p>

<h4>${_('%s commented on a %s changeset.') % (cs_comment_user,cs_target_repo) |n}</h4>

<p>${_('Changeset')}: ${h.short_id(raw_id)}</p>
<p>${_('Description')}:<br/>
${h.shorter(message, 256)}
</p>

%if status_change:
    <p>${_('The changeset status was changed to')}: <b>${status_change}</b></p>
%endif
<p>${_('Comment')}:<br/>
${body}
</p>