]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/notifications/feedback.html
Removes a redundant piece of text from the tags template.
[osqa.git] / forum / skins / default / templates / notifications / feedback.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
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" %}:
17             {% if user.is_authenticated %}
18                 {{ user.username }} <br /> {% trans "email" %}:{{ user.email }}
19             {% else %}
20                 {% if name %}{{ name }}{% else %}{% trans "anonymous" %}{% endif %}
21                 {% if email %}{% trans "email" %}:{{ email }}{% endif %}
22             {% endif %}
23             <br/>
24                 ip: {{ ip }}
25         </p>
26
27         <blockquote>
28         {% trans "Message body:" %} {{ message }}
29         </blockquote>
30
31     {% endhtmlcontent %}
32
33 {% textcontent notifications/base_text.html %}
34 {% if user.is_authenticated %}
35 {% trans "Sender" %}: {{ user.username }}
36 {% trans "email" %}: {{ user.email }}
37 {% else %}
38 {% trans "Sender" %}: {% if name %}{{ name }}{% else %}{% trans "anonymous" %}{% endif %}
39 {% if email %}{% trans "email" %}: {{ email }}{% endif %}
40 {% endif %}
41 ip: {{ ip }}
42
43 {% trans "Message body:" %} {{ message }}
44 {% endtextcontent %}
45
46 {% endemail %}
47