{% extends 'layouts/base.html' %} {% load static %} {% load i18n %} {% load l10n %} {% load social_tags %} {% block title %} {{ profile_user.get_full_name|default:profile_user.username }} - {% trans "Perfil" %} {% endblock title %} {% block extrahead %} {% endblock extrahead %} {% block content %} {% csrf_token %}
{{ profile_user.get_full_name|default:profile_user.username }}{% verified_badge profile_user "14px" %}
{% if user == profile_user %} {% endif %}
{% if profile_user.social_profile.cover_image %}
{% else %}
{% endif %}
{% if profile_user.avatar %} Avatar {% else %} Avatar {% endif %} {% if profile_user.profile_type != 'regular' %}
{% endif %}

{{ profile_user.get_full_name|default:profile_user.username }}{% profile_badge profile_user "20px" %}{% verified_badge profile_user "20px" %}

@{{ profile_user.username }}{% profile_badge profile_user "16px" %}{% verified_badge profile_user "16px" %}

{% if profile_user.social_profile.bio %}

{{ profile_user.social_profile.bio }}

{% endif %} {% if profile_user.profile_type != 'regular' %}
{% profile_type_display profile_user %}
{% if profile_user.profile_type == 'superadmin' %} Acesso total ao sistema e controle absoluto {% elif profile_user.profile_type == 'staff' %} Membro da equipe com privilégios administrativos {% elif profile_user.profile_type == 'moderator' %} Moderador da comunidade com poderes especiais {% elif profile_user.profile_type == 'verified' %} Conta verificada e confiável {% elif profile_user.profile_type == 'supporter' %} Apoiador da comunidade com benefícios especiais {% endif %}
{% endif %}
{% if profile_user.social_profile.location %} {{ profile_user.social_profile.location }} {% endif %} {% if profile_user.social_profile.phone and profile_user.social_profile.show_phone %} {{ profile_user.social_profile.phone }} {% endif %} {% if profile_user.social_profile.show_email %} {{ profile_user.email }} {% endif %} {% if profile_user.social_profile.birth_date %} {{ profile_user.social_profile.birth_date|date:"d/m/Y" }} {% endif %} {% if profile_user.social_profile.gender %} {{ profile_user.social_profile.get_gender_display }} {% endif %}
{% if profile_user.social_profile.website %} {% endif %} {% if profile_user.social_profile.interests %}
{% trans "Interesses" %}: {{ profile_user.social_profile.interests }}
{% endif %} {% if user != profile_user %}
{% if is_friend %} {% if profile_user.social_profile.allow_messages %} {% trans "Mensagem" %} {% endif %} {% else %} {% if not has_pending_request %} {% trans "Solicitar amizade" %} {% else %} {% endif %} {% endif %} {% trans "Buscar posts" %} {% trans "Feed" %}
{% else %} {% endif %}
{% if user == profile_user %} {% trans "Meus Posts" %} {% else %} {% trans "Posts de" %} {{ profile_user.get_full_name|default:profile_user.username }} {% endif %}
{% if posts %} {% for post in posts %}
{% if post.author.avatar %} Avatar {% else %} Avatar {% endif %}
{{ post.created_at|timesince }} {% trans "atrás" %} {% if post.is_edited %} {% endif %}

{{ post.content|process_content|linebreaks }}

{% if post.image %} Post image {% endif %} {% if post.video %} {% endif %} {% if post.link %}
{% if post.link_image %} Link preview {% endif %} {% if post.link_title %}
{{ post.link_title }}
{% endif %} {% if post.link_description %}

{{ post.link_description }}

{% endif %} {% trans "Abrir link" %}
{% endif %} {% if post.hashtags.all %}
{% for hashtag in post.hashtags.all %} #{{ hashtag.hashtag.name }} {% endfor %}
{% endif %}
{{ post.comments_count }}
{{ post.views_count }} {% trans "visualizações" %}
{% endfor %} {% else %}
{% trans "Nenhum post ainda" %}

{% if user == profile_user %} {% trans "Comece a compartilhar suas ideias!" %} {% else %} {% trans "Este usuário ainda não fez nenhum post." %} {% endif %}

{% endif %}
{% endblock content %}