{% extends 'base.html' %} {% load i18n %} {% load mtp_common %} {% block inner_content %} {% if return_to %} {% trans 'Back' %} {% endif %}
{% language_switch %}

{% trans 'Your feedback' %}

{% csrf_token %} {% include 'mtp_common/forms/error-summary.html' with form=form only %} {{ form.referer }}
{% trans 'Feedback details' %} {% with field=form.ticket_content value=request.GET.message|default:'' %}
{% include 'mtp_common/forms/field-label.html' with field=field only %}

{% trans 'Please don’t include bank details or any other personal information.' %}

{% include 'mtp_common/forms/field-errors.html' with field=field only %}
{% endwith %}

{% trans 'Do you want a reply?' %}

{% trans 'Enter your email address if you’d like a reply. We won’t use it for anything else.' %}

{% include 'mtp_common/forms/field.html' with field=form.contact_email value=request.GET.email|default:'' only %}
{% endblock %}