{% extends 'layouts/base.html' %} {% load static %} {% load i18n %} {% load l10n %} {% load social_tags %} {% block title %} {% if object %} {% trans "Editar Post" %} {% else %} {% trans "Criar Novo Post" %} {% endif %} {% endblock title %} {% block extrastyle %} {% endblock extrastyle %} {% block extra_js %} {% endblock extra_js %} {% block content %}
{{ user.get_full_name|default:user.username }}{% verified_badge user "14px" %}
{{ user.get_full_name|default:user.username }}{% verified_badge user "18px" %}

@{{ user.username }}{% verified_badge user "14px" %}

{{ user_stats.posts_count }}
{% trans "Posts" %}
{{ user_stats.followers_count }}
{% trans "Seguidores" %}
{{ user_stats.following_count }}
{% trans "Seguindo" %}

{% if object %} {% trans "Editar Post" %} {% else %} {% trans "Criar Novo Post" %} {% endif %}

{% if object %} {% trans "Atualize seu post com novas informações" %} {% else %} {% trans "Compartilhe algo interessante com sua comunidade" %} {% endif %}

{% csrf_token %}
{{ form.content }} {% if form.content.errors %}
{{ form.content.errors.0 }}
{% endif %}
{% if form.image.errors %}
{{ form.image.errors.0 }}
{% endif %} {% if form.video.errors %}
{{ form.video.errors.0 }}
{% endif %}
0/1000 0 {% trans "hashtags" %}
{% if object %} {% if object.image or object.video or object.link %}
{% trans "Conteúdo atual:" %}
{% if object.image %}
Imagem atual
{% endif %} {% if object.video %}
{% endif %} {% if object.link %} {% endif %}
{% endif %} {% endif %}
{{ form.is_public }}
{% if form.image.errors %}
{{ form.image.errors.0 }}
{% endif %} {% if form.video.errors %}
{{ form.video.errors.0 }}
{% endif %}
0/1000 0 {% trans "hashtags" %}
{{ form.is_public }}
{% trans "Dicas para um post atrativo" %}
{% trans "Seja autêntico" %}
{% trans "Compartilhe experiências reais e genuínas" %}
{% trans "Use mídia de qualidade" %}
{% trans "Imagens e vídeos atraem mais engajamento" %}
{% trans "Hashtags relevantes" %}
{% trans "Aumente o alcance com tags apropriadas" %}
{% trans "Engaje com comentários" %}
{% trans "Responda e interaja com sua audiência" %}
{% trans "Hashtags Populares" %}
{% for hashtag in popular_hashtags|slice:":5" %}
#{{ hashtag.name }} {{ hashtag.posts_count }}
{% empty %}
{% trans "Nenhuma hashtag popular ainda" %}
{% endfor %}
{% trans "Quem Seguir" %}
{% for suggested_user in suggested_users|slice:":5" %}
{{ suggested_user.get_full_name|default:suggested_user.username }}
@{{ suggested_user.username }}
{% empty %}
{% trans "Nenhuma sugestão disponível" %}
{% endfor %}
{% if can_moderate %}
{% trans "Estatísticas" %}
{% trans "Total de usuários" %} {{ network_stats.total_users }}
{% trans "Total de posts" %} {{ network_stats.total_posts }}
{% trans "Posts hoje" %} {{ network_stats.posts_today }}
{% endif %}
{% endblock content %}