{% extends "misago/profile/base.html" %} {% load i18n misago_avatars misago_batch %} {% block title %}{% trans "Follows" %} | {{ block.super }}{% endblock %} {% block section %}
{% 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 %}

  • {{ user.posts }} {% trans "posts" %}
  • {{ user.threads }} {% trans "threads" %}
  • {{ user.followers }} {% trans "followers" %}
{% endfor %}
{% empty %}

{% 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 %}

{% endfor %}
{% endblock section %}