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

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

{% endblock %} {% block panel %}

{% trans "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 %}
{% blocktrans with username=user|username %}{{ username }} isn't following any users{% endblocktrans %}
{% endif %}
{% endblock %}