bookwyrm/bookwyrm/templates/snippets/remove_follower_button.html

6 lines
229 B
HTML
Raw Normal View History

{% load i18n %}
<form name="remove" method="post" action="/remove-follow/{{ user.id }}">
{% csrf_token %}
<button class="button is-danger is-light is-small {{ class }}" type="submit">{% trans "Remove" %}</button>
</form>