{% extends "base.html" %} {% block title -%} {{ _("Report") }} {%- endblock %} {% from "macros/forms.html" import render_field, render_submit_field, render_checkbox_field, easymde_scripts %} {% block scriptextra %} {{ easymde_scripts() }} {% 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 using the link below.") }}

Login Contact the admin

{% else %}
{{ form.hidden_tag() }} {{ render_field(form.url) }} {{ render_field(form.title) }} {{ render_field(form.message, class_="m-0", fieldclass="form-control markdown", data_enter_submit="1") }} {{ render_submit_field(form.submit) }}

{{ _("The full report will be visible to all ContentDB staff members, including editors and moderators.") }} {{ _("If you are reporting content posted by another user, we may discuss the report with them but will not disclose who reported it.") }} {{ _("If you are reporting content by an editor or moderator, then you should email the admin or a moderator directly to hide your identity.") }}

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

{% endif %} {% endblock %}