{% extends "misago/profile/base.html" %} {% load humanize i18n misago_avatars misago_pagination %} {% block meta-description %}{% blocktrans trimmed with user=profile followers=profile.followers|intcomma count counter=profile.followers %} {{ user }} is followed by {{ followers }} user. {% plural %} {{ user }} is followed by {{ followers }} users. {% endblocktrans %}{% endblock meta-description %} {% block page %} {% if followers.object_list %}

{% if is_authenticated_user %} {% blocktrans trimmed with followers=profile.followers|intcomma count counter=profile.followers %} You are followed by {{ followers }} user. {% plural %} You are followed by {{ followers }} users. {% endblocktrans %} {% else %} {% blocktrans trimmed with user=profile followers=profile.followers|intcomma count counter=profile.followers %} {{ user }} is followed by {{ followers }} user. {% plural %} {{ user }} is followed by {{ followers }} users. {% endblocktrans %} {% endif %}

{% include "misago/users_cards.html" with cards=followers.object_list %} {% pagination followers "misago/profile/pagination.html" 'misago:user_followers' user_slug=profile.slug user_id=profile.pk %} {% else %}

{% if is_authenticated_user %} {% blocktrans trimmed with user=profile %} No users are following you, {{ user }}. {% endblocktrans %} {% else %} {% blocktrans trimmed with user=profile %} {{ user }} has no followers. {% endblocktrans %} {% endif %}

{% endif %} {% endblock page %}