{% 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_form %} {% set active_child = 'admin_reports' %} {% block app_content %}

{{ _('Reports') }}

{% 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) }} {% if report.suspect_conversation_id %} View {% elif report.suspect_post_reply_id %} View {% elif report.suspect_post_id %} View {% elif report.suspect_user_id %} View {% elif report.suspect_community_id %} View {% endif %}

{% include 'admin/_nav.html' %}

{% endblock %}