{% extends "django_knowledge/emails/base.html" %} {% load i18n %} {% block content %}

{% blocktrans with name=name %}Hello {{ name }},{% endblocktrans %}

{% if response %}

{% blocktrans with url=response.question.url title=response.question.title domain=site.domain %} We just wanted to let you know that a new response has been added to the question "{{ title }}". You can visit it here: {{ domain }}{{ url }}. {% endblocktrans %}

{{ response.body|striptags|markdown }}

{% trans "You are receiving these messages because you checked the 'alert' box when you originally posted." %}

{% endif %} {% if question %}

{% blocktrans with url=question.url title=question.title domain=site.domain %} We just wanted to let you know that a new question has been added: "{{ title }}". You can visit it here: {{ domain }}{{ url }} {% endblocktrans %}

{{ question.body|striptags|markdown }}

{% trans "You are receiving these messages because you are a staff member." %}

{% endif %}

{% blocktrans with name=site.name %}Thank you, {{ name }} team{% endblocktrans %}

{% endblock content %}