]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/notifications/newcomment.html
Adds a couple of settings for email customization.
[osqa.git] / forum / skins / default / templates / notifications / newcomment.html
1 {% load i18n extra_tags email_tags %}
2
3 {% declare %}
4     prefix = settings.EMAIL_SUBJECT_PREFIX
5     app_name = settings.APP_SHORT_NAME
6     post = comment.parent
7     question = post.question and post.question or post
8     post_author = post.author.username
9     comment_author = comment.author
10     question_url = question.get_absolute_url()
11     question_title = html.mark_safe(question.title)
12     safe_body = html.html2text(comment.comment)
13     author_link = html.objlink(comment.author, style=settings.EMAIL_ANCHOR_STYLE)
14     question_link = html.objlink(question, style=settings.EMAIL_ANCHOR_STYLE)
15 {% enddeclare %}
16
17 {% email %}
18     {% subject %}{% blocktrans %}{{ prefix }} New comment on {{ question_title }}{% endblocktrans %}{% endsubject %}
19
20     {% htmlcontent notifications/base.html %}
21         <p style="{{ p_style }}">
22             {% blocktrans %}{{ author_link }} has just posted a comment on {% endblocktrans %}
23             {% ifnotequal post question %}
24                 {% blocktrans %}the answer posted by {{ post_author }} to {% endblocktrans %}
25             {% endifnotequal %}
26             {% blocktrans %}the question {{ question_link }}{% endblocktrans %}
27         </p>
28
29         <blockquote>
30         {{ comment.comment }}
31         </blockquote>
32
33         <p style="{{ p_style }}">{% trans "Don't forget to come over and cast your vote." %}</p>
34     {% endhtmlcontent %}
35
36 {% textcontent notifications/base_text.html %}
37 {% blocktrans %}{{ comment_author }} has just posted a comment on {% endblocktrans %}
38 {% ifnotequal post question %}
39 {% blocktrans %}the answer posted by {{ post_author }} to {% endblocktrans %}
40 {% endifnotequal %}
41 {% blocktrans %}the question "{{ question_title }}"{% endblocktrans %}
42 {{ safe_body }}
43
44 {% trans "Don't forget to come over and cast your vote." %}
45 {% endtextcontent %}
46
47 {% endemail %}