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

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


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

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

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