2021-02-28 02:48:10 +00:00
|
|
|
{% load i18n %}
|
2020-12-13 02:25:04 +00:00
|
|
|
{% load bookwyrm_tags %}
|
2020-03-29 23:18:04 +00:00
|
|
|
{% 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>
|
2020-03-29 23:18:04 +00:00
|
|
|
{% endif %}
|