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

{% trans "Moderator Comments" %}

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

{{ comment.note }}

{% endfor %}
{% csrf_token %}

{% trans "Reported statuses" %}

{% if not report.statuses.exists %} {% trans "No statuses reported" %} {% else %} {% endif %}
{% endblock %}