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