moviewyrm/bookwyrm/templates/snippets/follow_request_buttons.html

14 lines
559 B
HTML
Raw Normal View History

2020-12-13 02:25:04 +00:00
{% load bookwyrm_tags %}
{% if request.user|follow_request_exists:user %}
2020-11-11 05:34:26 +00:00
<form action="/accept-follow-request/" method="POST">
{% csrf_token %}
2020-03-16 23:10:59 +00:00
<input type="hidden" name="user" value="{{ user.username }}">
<button class="button is-link is-small" type="submit">Accept</button>
</form>
2020-11-11 05:34:26 +00:00
<form action="/delete-follow-request/" method="POST">
{% csrf_token %}
2020-03-16 23:10:59 +00:00
<input type="hidden" name="user" value="{{ user.username }}">
2020-11-09 20:10:37 +00:00
<button class="button is-danger is-light is-small" type="submit" class="warning">Delete</button>
</form>
{% endif %}