{% extends 'settings/admin_layout.html' %} {% load i18n %} {% load humanize %} {% block title %}{% blocktrans with report_id=report.id %}Report #{{ report_id }}{% endblocktrans %}{% endblock %} {% block header %}{% blocktrans with report_id=report.id %}Report #{{ report_id }}{% endblocktrans %}{% endblock %} {% block panel %}
{% trans "Back to reports" %}
{% include 'moderation/report_preview.html' with report=report %}

{% trans "Actions" %}

{% trans "View user profile" %}

{% trans "Send direct message" %}

{% csrf_token %} {% if report.user.is_active %} {% else %} {% endif %}

{% trans "Moderator Comments" %}

{% for comment in report.reportcomment_set.all %}

{{ comment.note }}

{% endfor %}
{% csrf_token %}

{% trans "Reported statuses" %}

{% endblock %}