moviewyrm/bookwyrm/templates/moderation/report.html

44 lines
1.3 KiB
HTML
Raw Normal View History

2021-03-09 02:36:34 +00:00
{% extends 'settings/admin_layout.html' %}
{% load i18n %}
2021-03-09 20:35:07 +00:00
{% 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 %}
<div class="block">
<a href="{% url 'settings-reports' %}">{% trans "Back to reports" %}</a>
</div>
<div class="block">
{% include 'moderation/report_preview.html' with report=report %}
2021-03-09 20:35:07 +00:00
</div>
<div class="block content">
<h3>{% trans "Actions" %}</h3>
<div class="field is-grouped">
<button class="button">Direct message</button>
<button class="button">Suspend</button>
</div>
{% for comment in report.reportcomment_set.all %}
<div class="block">
{{ comment }}
</div>
{% endfor %}
<form>
<label for="report_comment" class="label">Comment on report</label>
<textarea name="comment" id="report_comment" class="textarea"></textarea>
<button class="button">{% trans "Comment" %}</button>
</forM=m>
</div>
<div class="block content">
<h3>{% trans "Reported statuses" %}</h3>
<ul>
{% for status in report.statuses.all %}
<li>{{ status.id }}</li>
{% endfor %}
</ul>
</div>
{% endblock %}