{% extends "admin_base.html" %} {% block body %}

Report detail #{{ report.id }}

Type: {{ [None, 'user', 'message'][report.media_type] }}

Reason: {{ report_reasons[report.reason] }}

Status: {{ ['Unreviewed', 'Accepted', 'Declined'][report.status] }}

Detail

{% if report.media is none %}

The media is unavailable.

{% elif report.media_type == 1 %}

Showing first 20 messages of the reported user.

{% elif report.media_type == 2 %} {% set message = report.media %} {% include "includes/reported_message.html" %} {% endif %}
{% endblock %}