{% extends 'settings/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 %} {% trans "Back to reports" %} {% endblock %} {% block panel %}
{% include 'settings/reports/report_preview.html' with report=report %}
{% include 'settings/users/user_info.html' with user=report.user %} {% include 'settings/users/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 %}