1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{% load i18n extra_tags email_tags %}
{% declare %}
prefix = html.mark_safe(smart_str(settings.EMAIL_SUBJECT_PREFIX))
app_name = smart_str(settings.APP_SHORT_NAME)
safe_app_name = html.mark_safe(smart_str(settings.APP_SHORT_NAME))
question_author = html.mark_safe(smart_str(question.author.username))
question_url = smart_str(settings.APP_URL + question.get_absolute_url())
question_title = html.mark_safe(smart_str(question.title))
question_tags = html.mark_safe(smart_str(question.tagnames))
safe_body = html.html2text(smart_str(question.html))
author_link = html.objlink(question.author, style=settings.EMAIL_ANCHOR_STYLE)
question_link = html.objlink(question, style=settings.EMAIL_ANCHOR_STYLE)
tag_links = html.mark_safe(smart_str(" ".join([html.objlink(t, style=settings.EMAIL_ANCHOR_STYLE) for t in question.tags.all()])))
{% enddeclare %}
{% email %}
{% subject %}{% blocktrans %}{{ prefix }} New question: {{ question_title }} on {{ safe_app_name }}{% endblocktrans %}{% endsubject %}
{% htmlcontent notifications/base.html %}
<p style="{{ p_style }}">
{% blocktrans %}
{{ author_link }} has just posted a new question on {{ app_name }}, entitled
{{ question_link }}
and tagged "<em>{{ tag_links }}</em>". Here's what it says:
{% endblocktrans %}
</p>
<blockquote>
{{ question.html|safe }}
</blockquote>
<p style="{{ p_style }}">{% trans "Don't forget to come over and cast your vote." %}</p>
{% endhtmlcontent %}
{% textcontent notifications/base_text.html %}
{% blocktrans %}
{{ question_author }} has just posted a new question on {{ safe_app_name }}, entitled
"{{ question_title }}" and tagged {{ question_tags }}:
{% endblocktrans %}
{{ safe_body }}
{% trans "Don't forget to come over and cast your vote." %}
{% endtextcontent %}
{% endemail %}