{% extends 'layouts/base.html' %} {% load static %} {% load i18n %} {% load social_tags %} {% load l10n %} {% block title %} {% trans "Seguindo por" %} {{ profile_user.get_full_name|default:profile_user.username }} {% endblock title %} {% block content %}

{% trans "Seguindo" %}

{% trans "Pessoas que" %} {{ profile_user.get_full_name|default:profile_user.username }} {% trans "segue" %}
{% if following %}
{% for follow in following %}
{% if follow.following.avatar %} Avatar {% else %} Avatar {% endif %}
{{ follow.following.get_full_name|default:follow.following.username }}

@{{ follow.following.username }}

{% if follow.following.social_profile and follow.following.social_profile.bio %} {{ follow.following.social_profile.bio|truncatechars:50 }} {% endif %}
{% if user != follow.following %} {% if user == profile_user %} {% else %} {% endif %} {% endif %}
{% endfor %}
{% else %}

{% if user == profile_user %} {% trans "Você ainda não segue ninguém" %} {% else %} {% trans "Este usuário ainda não segue ninguém" %} {% endif %}

{% if user == profile_user %} {% trans "Comece a seguir pessoas para ver seus posts no feed!" %} {% else %} {% trans "Este usuário ainda não começou a seguir pessoas." %} {% endif %}

{% if user == profile_user %} {% trans "Buscar pessoas" %} {% endif %}
{% endif %}
{% csrf_token %} {% endblock content %}