moviewyrm/bookwyrm/templates/snippets/block_button.html

13 lines
455 B
HTML
Raw Normal View History

2021-02-28 02:48:10 +00:00
{% load i18n %}
{% if not blocks %}
2021-01-25 22:03:18 +00:00
<form name="blocks" method="post" action="/block/{{ user.id }}">
{% csrf_token %}
2021-02-28 02:48:10 +00:00
<button class="button is-danger is-light is-small {{ class }}" type="submit">{% trans "Block" %}</button>
2021-01-25 22:03:18 +00:00
</form>
{% else %}
<form name="unblocks" method="post" action="/unblock/{{ user.id }}">
{% csrf_token %}
2021-02-28 02:48:10 +00:00
<button class="button is-small {{ class }}" type="submit">{% trans "Un-block" %}</button>
2021-01-25 22:03:18 +00:00
</form>
{% endif %}