]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/skins/default/templates/notifications/feedback.html
do not show user bio if user is suspended
[osqa.git] / forum / skins / default / templates / notifications / feedback.html
index b9464f2364a7560b3601845be3e94767e4215b47..bb70300e3973d15a0c472bbe0c28dde82500a322 100644 (file)
@@ -1,29 +1,37 @@
-{% extends "email_base.html" %}
-{% load i18n %}
-{% load extra_tags %}
-{% load email_tags %}
-
-{% block content %}
-    <p>{% spaceless %}
-    {% blocktrans with settings.APP_SHORT_NAME as site_title %}
-    Hello, this is a {{site_title}} forum feedback message
-    {% endblocktrans %}
-    {% endspaceless %}</p>
-
-    <p>
-        {% trans "Sender" %}:
-        {% if user.is_authenticated %}
-            {{ user.username }} <br /> {% trans "email" %}:{{ user.email }}
-        {% else %}
-            {% if name %}{{ name }}{% else %}{% trans "anonymous" %}{% endif %}
-            {% if email %}{% trans "email" %}:{{ email }}{% endif %}
-        {% endif %}
-        <br/>
-            ip: {{ ip }}
-    </p>
-
-    <blockquote>
+{% load i18n extra_tags email_tags %}
+
+{% declare %}
+    prefix = smart_str(settings.EMAIL_SUBJECT_PREFIX)
+    app_name = smart_str(settings.APP_SHORT_NAME)
+
+    exclude_greeting = True
+    exclude_finetune = True
+{% enddeclare %}
+
+{% email %}
+    {% subject %}{% blocktrans %}{{ prefix }} Feedback message from {{ app_name }}{% endblocktrans %}{% endsubject %}
+
+    {% htmlcontent notifications/base.html %}
+        <p style="{{ p_style }}">
+            {% trans "Sender" %}:{% if name %}{{ name }}{% else %}{% trans "anonymous" %}{% endif %}<br />
+            {% trans "email" %}: {{ email }}
+            <br/>
+                ip: {{ ip }}
+        </p>
+
+        <blockquote>
         {% trans "Message body:" %} {{ message }}
-    </blockquote>
+        </blockquote>
+
+    {% endhtmlcontent %}
+
+{% textcontent notifications/base_text.html %}
+{% trans "Sender" %}: {% if name %}{{ name|safe }}{% else %}{% trans "anonymous" %}{% endif %}
+{% trans "email" %}: {{ email|safe }}
+ip: {{ ip }}
+
+{% trans "Message body:" %} {{ message|safe }}
+{% endtextcontent %}
+
+{% endemail %}
 
-{% endblock %}