mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-25 19:11:09 +00:00
Displaying following as well as followers on user profile.
This commit is contained in:
parent
8cbca4229f
commit
d6e48f9a21
1 changed files with 14 additions and 1 deletions
|
@ -25,12 +25,25 @@
|
||||||
{% for follower in user.followers.all %}
|
{% for follower in user.followers.all %}
|
||||||
<div>
|
<div>
|
||||||
<a href="{{ follower.actor }}">{{ follower.username }}</a>
|
<a href="{{ follower.actor }}">{{ follower.username }}</a>
|
||||||
{% if not request.user in follower.followers.all %}
|
{% if not request.user in follower.followers.all and request.user != follower %}
|
||||||
{% include 'snippets/follow_button.html' with user=follower %}
|
{% include 'snippets/follow_button.html' with user=follower %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<h2>Following</h2>
|
||||||
|
{% for following in user.following.all %}
|
||||||
|
<div>
|
||||||
|
<a href="{{ following.actor }}">{{ following.username }}</a>
|
||||||
|
{% if not request.user in following.followers.all and request.user != following %}
|
||||||
|
{% include 'snippets/follow_button.html' with user=following %}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="content">
|
<div id="content">
|
||||||
|
|
Loading…
Reference in a new issue