{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} {% from 'bootstrap/form.html' import render_field %} {% block app_content %}
{% include "community/_community_moderation_nav.html" %}

{{ _('Reports') }}

{{ _('See and handle all reports made about %(community)s', community=community.display_name()) }}.

{% if reports.items %}
{% for report in reports.items %} {% endfor %}
{{ _('Local/Remote') }} {{ _('Reasons') }} {{ _('Description') }} {{ _('Type') }} {{ _('Created') }} {{ _('Actions') }}
{{ 'Local' if report.is_local() else 'Remote' }} {{ report.reasons }} {{ report.description }} {{ report.type_text() }} {{ arrow.get(report.created_at).humanize(locale=locale) }}
{% else %}

{{ _('No reports yet') }}.

{% endif %}
{% endblock %}