{% extends 'layout.html' %} {% load bookwyrm_tags %} {% block content %}

Users following {% if is_self %}you {% else %} {% include 'snippets/username.html' with user=user %} {% endif %}

{% include 'snippets/user_header.html' with user=user %}

Following

{% for follower in user.following.all %}
{% include 'snippets/avatar.html' with user=follower %}
{% include 'snippets/username.html' with user=follower show_full=True %}
{% include 'snippets/follow_button.html' with user=follower %}
{% endfor %} {% if not following.count %}
{{ user|username }} isn't following any users
{% endif %}
{% endblock %}