{% extends 'mail/base.html' %} {% from 'mail/button.html' import mail_button %} {% block body %}

{{ _('%(user)s commented an issue on your %(type)s %(subject)s', type=issue.subject.verbose_name, user=( ''|safe + message.posted_by.fullname + ''|safe ), subject=( ''|safe + issue.subject|string + ''|safe ) ) }}.


{{ _('Title') }}: {{ issue.title }}

{{ _('Message') }}: {{ message.content | markdown }}

{{ mail_button( _('See the issue'), issue.subject.external_url ) }}
{% endblock %}