{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Dashboard

Bienvenido, {{ user.username }}

✍️ Crear Post
📝
Hoy

{{ stats.posts_today }}

Posts publicados

📅
Semana

{{ stats.posts_week }}

Posts esta semana

Pendiente

{{ stats.pending_approval }}

Por aprobar

🗓️
Programado

{{ stats.scheduled }}

Posts programados

Pendientes de Aprobación

Ver todos
{% if pending_posts %} {% for post in pending_posts %}

{{ post.content[:100] }}{% if post.content|length > 100 %}...{% endif %}

{% for platform in post.platforms %} {{ platform }} {% endfor %}
{{ post.created_at[:10] if post.created_at else '-' }}
{% endfor %} {% else %}

No hay posts pendientes

{% endif %}

🗓️ Próximas Publicaciones

Ver calendario
{% if scheduled_posts %} {% for post in scheduled_posts %}

{{ post.content[:100] }}{% if post.content|length > 100 %}...{% endif %}

{% for platform in post.platforms %} {{ platform }} {% endfor %}
{{ post.scheduled_at[:16] if post.scheduled_at else '-' }}
{% endfor %} {% else %}
📭

No hay posts programados

{% endif %}

💬 Interacciones Recientes

Ver todas
{% if recent_interactions %} {% for interaction in recent_interactions %}
{{ interaction.author_username[0]|upper if interaction.author_username else '?' }}

@{{ interaction.author_username or 'Usuario' }}

{{ interaction.interaction_type }}

{{ interaction.content[:80] }}{% if interaction.content|length > 80 %}...{% endif %}

{% endfor %} {% else %}
💤

No hay interacciones pendientes

{% endif %}

Acciones Rápidas

Estado de Plataformas

{% endblock %} {% block extra_scripts %} {% endblock %}