{% load i18n extra_tags email_tags %} {% declare %} prefix = settings.EMAIL_SUBJECT_PREFIX app_name = settings.APP_SHORT_NAME question_author = question.author.username app_url = settings.APP_URL question_url = question.get_absolute_url() question_title = question.title question_tags = question.tagnames {% enddeclare %} {% email %} {% subject %}{% blocktrans %}{{ prefix }} New question on {{ app_name }}{% endblocktrans %}{% endsubject %} {% htmlcontent notifications/base.html %}

{% trans "Hello" %} {{ recipient.username }},

{% blocktrans %} {{ question_author }} has just posted a new question on {{ app_name }}, with title {{ question_title }} and tagged {{ question_tags }}: {% endblocktrans %}

{{ question.html|safe }}

{% trans "Don't forget to come over and cast your vote." %}

{% blocktrans %}Sincerely,
Forum Administrator{% endblocktrans %}

{% endhtmlcontent %} {% textcontent %} {% trans "Hello" %} {{ recipient.username }} {% blocktrans %} {{ question_author }} has just posted a new question on {{ app_name }}, with title "{{ question_title }}" and tagged {{ question_tags }}: {% endblocktrans %} {{ question.body|safe }} {% trans "Don't forget to come over and cast your vote." %} {% blocktrans %}Sincerely, Forum Administrator{% endblocktrans %} {% endtextcontent %} {% endemail %}