- rationalise activitypub.Reject and fix model being undefined - fix not being able to follow users from followers page: 'delete' option now in user_options dropdown - revert bookwyrm.js - fix delete_follow_request deleting instead of rejecting - add user id to 'remove-follow' path
5 lines
229 B
HTML
5 lines
229 B
HTML
{% 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>
|