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

{% trans "User Profile" %}

{% endblock %} {% block panel %}

{% trans "Following" %}

{% for follower in user.following.all %}
{% include 'snippets/follow_button.html' with user=follower %}
{% endfor %} {% if not following %}
{% blocktrans with username=user|username %}{{ username }} isn't following any users{% endblocktrans %}
{% endif %}
{% include 'snippets/pagination.html' with page=following path=request.path %} {% endblock %}