]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/notifications/feedback.html
Some more improvements on the notifications, and applied two patches contributed...
[osqa.git] / forum / skins / default / templates / notifications / feedback.html
1 {% extends "email_base.html" %}
2 {% load i18n %}
3 {% load extra_tags %}
4 {% load email_tags %}
5
6 {% block content %}
7     <p>{% spaceless %}
8     {% blocktrans with settings.APP_SHORT_NAME as site_title %}
9     Hello, this is a {{site_title}} forum feedback message
10     {% endblocktrans %}
11     {% endspaceless %}</p>
12
13     <p>
14         {% trans "Sender" %}:
15         {% if user.is_authenticated %}
16             {{ user.username }} <br /> {% trans "email" %}:{{ user.email }}
17         {% else %}
18             {% if name %}{{ name }}{% else %}{% trans "anonymous" %}{% endif %}
19             {% if email %}{% trans "email" %}:{{ email }}{% endif %}
20         {% endif %}
21         <br/>
22             ip: {{ ip }}
23     </p>
24
25     <blockquote>
26         {% trans "Message body:" %} {{ message }}
27     </blockquote>
28
29 {% endblock %}