{% load i18n %} {% load avatar_tags %} {% load relationship_tags %}

{% trans "Following" %}

{% if profile.user.relationships.following %} {% for u in profile.user.relationships.following %} {% avatar u 65 %} {% endfor %} {% else %} {% trans "This user is not following anyone" %} {% endif %}

{% trans "Followers" %}

{% if profile.user.relationships.followers %} {% for u in profile.user.relationships.followers %} {% avatar u 65 %} {% endfor %} {% else %} {% trans "No one is following this user" %} {% endif %}