{% extends "misago/profile/base.html" %} {% load i18n misago_avatars misago_batch %} {% block title %}{% trans "Follows" %} | {{ block.super }}{% endblock %} {% block section %}
{% if count %}
{% for row in follows|batch:2 %}
{% for user in row %}

{{ user.username }}

{% if user.title %} {{ user.title }} {% endif %} {% blocktrans trimmed with joined_on=user.joined_on|date %} Joined on {{ joined_on }} {% endblocktrans %}

  • {% blocktrans trimmed count posts=user.posts %} {{ posts }} post {% plural %} {{ posts }} posts {% endblocktrans %}
  • {% blocktrans trimmed count threads=user.threads %} {{ threads }} thread {% plural %} {{ threads }} threads {% endblocktrans %}
  • {% blocktrans trimmed count followers=user.followers %} {{ followers }} follower {% plural %} {{ followers }} followers {% endblocktrans %}
{% endfor %}
{% endfor %}
{% else %}

{% if is_authenticated_user %} {% trans "You are not following any users." %} {% else %} {% blocktrans trimmed with username=profile.username %} {{ username }} is not following any users. {% endblocktrans %} {% endif %}

{% endif %}
{% endblock section %}