moviewyrm/bookwyrm/templates/snippets/follow_request_buttons.html

17 lines
681 B
HTML
Raw Normal View History

2021-02-28 02:48:10 +00:00
{% load i18n %}
2020-12-13 02:25:04 +00:00
{% load bookwyrm_tags %}
{% if request.user|follow_request_exists:user %}
2020-12-31 01:36:35 +00:00
<div class="field is-grouped">
<form action="/accept-follow-request/" method="POST">
{% csrf_token %}
<input type="hidden" name="user" value="{{ user.username }}">
2021-02-28 02:48:10 +00:00
<button class="button is-link is-small" type="submit">{% trans "Accept" %}</button>
2020-12-31 01:36:35 +00:00
</form>
<form action="/delete-follow-request/" method="POST">
{% csrf_token %}
<input type="hidden" name="user" value="{{ user.username }}">
2021-02-28 02:48:10 +00:00
<button class="button is-danger is-light is-small" type="submit" class="warning">{% trans "Delete" %}</button>
2020-12-31 01:36:35 +00:00
</form>
</div>
{% endif %}