]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/skins/default/templates/notifications/feedback.html
be able to control right navigation visibility in the administration interface
[osqa.git] / forum / skins / default / templates / notifications / feedback.html
index 45e4f820bf9403a1917576998e7ecdb7686a4d39..bb70300e3973d15a0c472bbe0c28dde82500a322 100644 (file)
@@ -1,8 +1,8 @@
 {% load i18n extra_tags email_tags %}
 
 {% declare %}
-    prefix = settings.EMAIL_SUBJECT_PREFIX
-    app_name = settings.APP_SHORT_NAME
+    prefix = smart_str(settings.EMAIL_SUBJECT_PREFIX)
+    app_name = smart_str(settings.APP_SHORT_NAME)
 
     exclude_greeting = True
     exclude_finetune = True
     {% endhtmlcontent %}
 
 {% textcontent notifications/base_text.html %}
-{% trans "Sender" %}: {% if name %}{{ name }}{% else %}{% trans "anonymous" %}{% endif %}
-{% trans "email" %}: {{ email }}
+{% trans "Sender" %}: {% if name %}{{ name|safe }}{% else %}{% trans "anonymous" %}{% endif %}
+{% trans "email" %}: {{ email|safe }}
 ip: {{ ip }}
 
-{% trans "Message body:" %} {{ message }}
+{% trans "Message body:" %} {{ message|safe }}
 {% endtextcontent %}
 
 {% endemail %}