forked from mirrors/bookwyrm
8 lines
351 B
HTML
8 lines
351 B
HTML
|
{% 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 }}">
|
||
|
<button class="button is-danger is-light is-small {{ class }}" type="submit">{% trans "Report" %}</button>
|
||
|
</form>
|