{% extends 'user/user_layout.html' %} {% load bookwyrm_tags %} {% block header %}

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

{% endblock %} {% block panel %}

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 %}