1 {% extends "email_base.html" %}
\r
3 {% load extra_tags %}
\r
6 <p>{% trans "Hello" %} {% user_var username %},</p>
\r
9 {% blocktrans with question.author.username as author_name and settings.APP_SHORT_NAME as app_title and settings.APP_URL as app_url and question.get_absolute_url as question_url and question.title as question_title and question.tagnames as question_tags %}
\r
10 {{ author_name }} has just posted a new question on {{ app_title }}, with title
\r
11 <a href="{{ app_url }}{{ question_url }}">{{ question_title }}</a> and tagged <em>{{ question_tags }}</em>:
\r
16 {{ question.html|safe }}
\r
21 Don't forget to come over and cast your vote.
\r
25 <p>{% blocktrans %}Sincerely,<br />
\r
26 Forum Administrator{% endblocktrans %}</p>
\r