]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/notifications/newquestion.html
e408950cc6d78294d96855678fc785dc11dcb142
[osqa.git] / forum / skins / default / templates / notifications / newquestion.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     question_author = question.author.username
7     question_url = settings.APP_URL + question.get_absolute_url()
8     question_title = question.title
9     question_tags = question.tagnames
10     safe_body = html.html2text(question.html)
11 {% enddeclare %}
12
13 {% email %}
14     {% subject %}{% blocktrans %}{{ prefix }} New question on {{ app_name }}{% endblocktrans %}{% endsubject %}
15
16     {% htmlcontent notifications/base.html %}
17         {% declare %}
18             author_link = html.objlink(question.author, style=a_style)
19             question_link = html.objlink(question, style=a_style)
20             tag_links = html.mark_safe(" ".join([html.objlink(t, style=a_style) for t in question.tags.all()]))
21         {% enddeclare %}
22
23         <p style="{{ p_style }}">
24             {% blocktrans %}
25             {{ author_link }} has just posted a new question on {{ app_name }}, entitled
26             {{ question_link }}
27              and tagged "<em>{{ tag_links }}</em>". Here's what it says:
28             {% endblocktrans %}
29         </p>
30
31         <blockquote>
32             {{ question.html|safe }}
33         </blockquote>
34
35         <p style="{{ p_style }}">{% trans "Don't forget to come over and cast your vote." %}</p>        
36     {% endhtmlcontent %}
37
38 {% textcontent notifications/base_text.html %}
39 {% blocktrans %}
40 {{ question_author }} has just posted a new question on {{ app_name }}, entitled
41 "{{ question_title }}" and tagged {{ question_tags }}:
42 {% endblocktrans %}
43 {{ safe_body }}
44
45 {% trans "Don't forget to come over and cast your vote." %}
46 {% endtextcontent %}
47
48 {% endemail %}
49