]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/notifications/feedback.html
Fixes OSQA 398, patch by Tim Whittington. Thanks.
[osqa.git] / forum / skins / default / templates / notifications / feedback.html
1 {% load i18n extra_tags email_tags %}
2
3 {% declare %}
4     prefix = html.mark_safe(settings.EMAIL_SUBJECT_PREFIX)
5     app_name = html.mark_safe(settings.APP_SHORT_NAME)
6
7     exclude_greeting = True
8     exclude_finetune = True
9 {% enddeclare %}
10
11 {% email %}
12     {% subject %}{% blocktrans %}{{ prefix }} Feedback message from {{ app_name }}{% endblocktrans %}{% endsubject %}
13
14     {% htmlcontent notifications/base.html %}
15         <p style="{{ p_style }}">
16             {% trans "Sender" %}:{% if name %}{{ name }}{% else %}{% trans "anonymous" %}{% endif %}<br />
17             {% trans "email" %}: {{ email }}
18             <br/>
19                 ip: {{ ip }}
20         </p>
21
22         <blockquote>
23         {% trans "Message body:" %} {{ message }}
24         </blockquote>
25
26     {% endhtmlcontent %}
27
28 {% textcontent notifications/base_text.html %}
29 {% trans "Sender" %}: {% if name %}{{ name|safe }}{% else %}{% trans "anonymous" %}{% endif %}
30 {% trans "email" %}: {{ email|safe }}
31 ip: {{ ip }}
32
33 {% trans "Message body:" %} {{ message|safe }}
34 {% endtextcontent %}
35
36 {% endemail %}
37