{% extends 'mkt/base.html' %} {% set title = _('Report Abuse') %} {% block title %} {# L10n: {0} is the name of the app. #} {{ mkt_page_title(_('Report abuse for {0}')|f(product.name)) }} {% endblock %} {% block content %} {{ mkt_breadcrumbs(product, [(None, title)]) }}

{{ title }}

{{ csrf() }} {{ form_field(abuse_form.text, req=False, label=None, tag='p') }} {% if abuse_form.has_recaptcha %} {% from 'includes/forms.html' import required %}
{% trans %}

Please enter both words below, separated by a space.

If this is hard to read, you can try different words or listen to something instead.

{% endtrans %}
{{ abuse_form.recaptcha.errors }} {% endif %}
{% endblock %}