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

@ -1,8 +1,10 @@
{% load i18n %}
<form name="report" method="post" action="{% url 'report' %}">
{% csrf_token %}
<input type="hidden" name="reporter" value="{{ request.user.id }}">
<input type="hidden" name="user" value="{{ user.id }}">
<input type="hidden" name="statuses" value="{{ user.id }}">
<button class="button is-danger is-light is-small {{ class }}" type="submit">{% trans "Report" %}</button>
</form>
{% load bookwyrm_tags %}
{% with 0|uuid as report_uuid %}
{% trans "Report" as button_text %}
{% include 'snippets/toggle/toggle_button.html' with class="is-danger is-light is-small is-fullwidth" text=button_text controls_text="report" controls_uid=report_uuid focus="modal-title-report" disabled=is_current %}
{% include 'moderation/report_modal.html' with user=user reporter=request.user controls_text="report" controls_uid=report_uuid %}
{% endwith %}