{% 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 %}
{{ _('See and handle all reports made about %(community)s', community=community.display_name()) }}
{% if reports.items %}Local/Remote | Reasons | Description | Type | Created | Actions |
---|---|---|---|---|---|
{{ 'Local' if report.is_local() else 'Remote' }} | {{ report.reasons }} | {{ report.description }} | {{ report.type_text() }} | {{ moment(report.created_at).fromNow() }} | {% 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 {% endif %} | {{ _('Escalate') }} | {{ _('Resolve') }} |
{{ _('No reports yet') }}
{% endif %}