Follow button snippet
This commit is contained in:
parent
5b13959850
commit
808ca0bd60
4 changed files with 25 additions and 32 deletions
13
fedireads/templates/snippets/follow_button.html
Normal file
13
fedireads/templates/snippets/follow_button.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
{% if not request.user in user.followers.all %}
|
||||
<form action="/follow/" method="post">
|
||||
{% csrf_token %}
|
||||
<input type="hidden" name="user" value="{{ user.username }}"></input>
|
||||
<input type="submit" value="Follow"></input>
|
||||
</form>
|
||||
{% else %}
|
||||
<form action="/unfollow/" method="post">
|
||||
{% csrf_token %}
|
||||
<input type="hidden" name="user" value="{{ user.username }}"></input>
|
||||
<input type="submit" value="Unfollow"></input>
|
||||
</form>
|
||||
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue