Files @ d9948f5ac7af
Branch filter:

Location: kallithea/kallithea/templates/email_templates/changeset_comment.html

Mads Kiilerich
mention: improve pattern for matching multiple mentions

It would (silently as always) fail to recognize some @mentions - especially
when only separated by a single whitespace char.
## -*- coding: utf-8 -*-
<%inherit file="main.html"/>

<p>${_('Comment from %s on %s changeset %s') % (cs_comment_user, cs_target_repo, h.short_id(raw_id))}:</p>
<p>${body}</p>

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

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

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