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

{% if is_self %}Your {% else %} {% include 'snippets/username.html' with user=user possessive=True %} {% endif %} followers

{% endblock %} {% block panel %}

{% trans "Followers" %}

{% for followers in followers %}
{% include 'snippets/avatar.html' with user=followers %} {% include 'snippets/username.html' with user=followers show_full=True %}
{% include 'snippets/follow_button.html' with user=followers %}
{% endfor %} {% if not followers.count %}
{% blocktrans with username=user|username %}{{ username }} has no followers{% endblocktrans %}
{% endif %}
{% endblock %}