{% extends "misago/profile/base.html" %} {% load i18n %} {% block title %}{% trans "Followers" %} | {{ block.super }}{% endblock %} {% block og-title %}{% trans "Followers" %} | {{ block.super }}{% endblock %} {% block section %}
{% if count %}
{% for user in followers %}
{% include "misago/userslists/usercard.html" with user=user %}
{% endfor %}
{% else %}

{% if is_authenticated_user %} {% trans "You have no followers." %} {% else %} {% blocktrans trimmed with username=profile.username %} {{ username }} has no followers. {% endblocktrans %} {% endif %}

{% endif %}
{% endblock section %}