mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-09 08:45:28 +00:00
11 lines
372 B
HTML
11 lines
372 B
HTML
|
<form action="/accept_follow_request/" method="POST">
|
||
|
{% csrf_token %}
|
||
|
<input type=hidden name="user" value="{{ user.username }}">
|
||
|
<input type=submit value="Accept">
|
||
|
</form>
|
||
|
<form action="/delete_follow_request/" method="POST">
|
||
|
{% csrf_token %}
|
||
|
<input type=hidden name="user" value="{{ user.username }}">
|
||
|
<input type=submit value="Delete">
|
||
|
</form>
|