{% extends "admin_base.html" %} {% block extra_head %} {{ super() }} {% endblock %} {% block admin_content %} {% macro decision_table(caption, rows, empty) %} {% for action in rows %} {% else %} {% if empty %}{% endif %} {% endfor %}
{{ caption }}
Action Moderator Reason When
{{ action['action'].replace('_', ' ') }} {{ action['actor_name'] }} {{ action['reason'] or '-' }} {{ local_dt(action['created_at']) }}
{{ empty }}
{% endmacro %}

Report {{ report['reason_label'] }}

Back to queue
Target
{{ report['target_type'] }} {{ report['target_uid'] }}
Status
{{ report['status'] }}
Severity
{{ report['severity'] }}
Origin
{{ report['origin'] }}
Reporter
{{ report['reporter_name'] or 'system' }}
Author
{{ report['owner_name'] or '-' }}
Filed
{{ local_dt(report['created_at']) }}
Reports on this target
{{ report['report_count'] }}
{% if report['detail'] %}

{{ report['detail'] }}

{% endif %} {% if report['categories'] %}

Filter categories: {{ report['categories']|join(', ') }}

{% endif %}

Decide

{% if not can_remove %}

Content removal is not available for a {{ report['target_type'] }}; act on the account instead.

{% endif %}

Decisions on this report

{{ decision_table("Moderation decisions recorded against this report", actions, "No decision recorded yet.") }}
{% if history %}

Author history

{{ decision_table("Earlier moderation decisions against this author", history, "") }}
{% endif %} {% endblock %}