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

{% trans "Seguidores" %}

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

@{{ follow.follower.username }}

{% if follow.follower.social_profile and follow.follower.social_profile.bio %} {{ follow.follower.social_profile.bio|truncatechars:50 }} {% endif %}
{% if user != follow.follower %} {% if follow.follower.id in user_following_ids %} {% else %} {% endif %} {% endif %}
{% endfor %}
{% else %}

{% if user == profile_user %} {% trans "Você ainda não tem seguidores" %} {% else %} {% trans "Este usuário ainda não tem seguidores" %} {% endif %}

{% if user == profile_user %} {% trans "Compartilhe conteúdo interessante para atrair seguidores!" %} {% else %} {% trans "Seja o primeiro a seguir!" %} {% endif %}

{% if user != profile_user %} {% endif %}
{% endif %}
{% csrf_token %} {% endblock content %}