Files @ 1c2371dc86bd
Branch filter:

Location: kallithea/rhodecode/templates/email_templates/changeset_comment.html - annotation

leonardo
Bugfix: On the changelog page, its possible that the some changeset is already checked out by the browser. So we check for that on page load.
## -*- 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>