{% extends 'core/base.html' %} {% load i18n %} {% load settings_value %} {% block pagetitle %}{% trans 'Abuse report' %} - {% settings_value 'PRODUCT_NAME' %}{% endblock %} {% block title %}{% trans 'Abuse report' %}{% endblock %} {% block content %} {% if is_test_mail %} {% include 'core/test_email_alert.html' %} {% endif %}

{% trans 'Please use the form below to report an abusive email sent from our platform.' %}

{% csrf_token %}

{% trans 'The contact name and email fields are optional, but are very useful in helping us investigate an abusive sender.' %}

{% for field in form %}
{{ field }}
{% endfor %}
{% endblock %}