{% extends "base.html" %} {% block title %} {{ _("Report") }} {% endblock %} {% block headextra %} {% if noindex %} {% endif %} {% endblock %} {% block content %}

{{ _("Report") }}

{% if not form %}

{{ _("Due to spam, we no longer accept reports from anonymous users on this form.") }} {{ _("Please sign in or contact the admin in another way") }}

Login Contact the admin

{% else %} {% from "macros/forms.html" import render_field, render_submit_field, render_checkbox_field %}
{{ form.hidden_tag() }} {% if url %}

URL: {{ url }}

{% endif %} {{ render_field(form.message, hint=_("What are you reporting? Why are you reporting it?")) }} {{ render_submit_field(form.submit) }}

{{ _("Reports will be shared with ContentDB staff.") }} {% if is_anon %} {{ _("Only the admin will be able to see who made the report.") }} {% endif %}

{{ _("Found a bug? Please report on the package's issue tracker or in a thread instead.") }}

{% endif %} {% endblock %}