Let user supply a note for report

This commit is contained in:
Mouse Reeve
2021-03-11 17:38:21 -08:00
parent 7f45206693
commit 33b8537a3d
9 changed files with 73 additions and 25 deletions

View File

@ -32,11 +32,13 @@
</forM=m>
</div>
<div class="block content">
<h3>{% trans "Reported statuses" %}</h3>
<div class="block">
<h3 class="title is-4">{% trans "Reported statuses" %}</h3>
<ul>
{% for status in report.statuses.all %}
<li>{{ status.id }}</li>
{% for status in report.statuses.select_subclasses.all %}
<li>
{% include 'snippets/status/status.html' with status=status moderation_mode=True %}
</li>
{% endfor %}
</ul>
</div>