3 {% blocktrans with settings.APP_TITLE|safe as site_title %}
4 Hello, this is a {{site_title}} forum feedback message
9 {% trans "Sender is" %}
10 {% if user.is_authenticated %}
11 {{user.username|safe}} {% trans "email" %}:{{user.email|safe}}
13 {% if name %}{{name|safe}}{% else %}{% trans "anonymous" %}{% endif %}
14 {% if email %}{% trans "email" %}:{{email|safe}}{% endif %}
16 ip:{{request.META.REMOTE_ADDR}}
19 {% trans "Message body:" %} {{message|safe}}