mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-18 23:51:10 +00:00
10 lines
398 B
HTML
10 lines
398 B
HTML
<form action="/accept_follow_request/" method="POST">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="user" value="{{ user.username }}">
|
|
<button type="submit">Accept</button>
|
|
</form>
|
|
<form action="/delete_follow_request/" method="POST">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="user" value="{{ user.username }}">
|
|
<button type="submit" class="warning">Delete</button>
|
|
</form>
|