]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/notifications/user_reported.html
Remove footer link to squatted domain
[osqa.git] / forum / skins / default / templates / notifications / user_reported.html
1 {% load i18n extra_tags email_tags %}
2
3 {% declare %}
4
5     reporter_author = html.mark_safe(smart_str(user.username))
6     reported = html.mark_safe(smart_str(reported.username))
7     
8     reported_link = html.objlink(reported, style=settings.EMAIL_ANCHOR_STYLE)
9     message = html.mark_safe(smart_str(message))
10     
11 {% enddeclare %}
12
13 {% email %}
14     {% subject %}{% blocktrans %}{{ prefix }} User reported: {{ reported }} by {{ reporter_author }}{% endblocktrans %}{% endsubject %}
15
16     {% htmlcontent notifications/base.html %}
17         <p style="{{ p_style }}">
18             {% blocktrans %}
19                         User reported: {{ reported }} by {{ reporter_author }}.<br/>
20                         Reporter Message: {{message}}
21             {% endblocktrans %}
22         </p>
23
24
25     {% endhtmlcontent %}
26
27 {% textcontent notifications/base_text.html %}
28 {% blocktrans %}
29                         User reported: {{ reported }} by {{ reporter_author }}.
30                         Reporter Message: {{message}}
31 {% endblocktrans %}
32
33
34 {% endtextcontent %}
35
36 {% endemail %}
37