{% extends theme('mail/base.html') %} {% from theme('mail/button.html') import mail_button %} {% block body %}
{{ _('%(user)s commented an discussion on your %(type)s %(subject)s', type=discussion.subject.verbose_name, user=( ''|safe + comment.posted_by.fullname + ''|safe ), subject=( ''|safe + discussion.subject|string + ''|safe ) ) }}.
{{ _('Details') }}: {{ discussion.title }}
{{ _('Comment') }}: {{ comment.content }}
{{ mail_button( _('See the discussion'), discussion.external_url ) }} |