2021-02-28 02:48:10 +00:00
|
|
|
{% load i18n %}
|
2021-05-23 03:36:30 +00:00
|
|
|
{% 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 %}
|