{% extends "madga/studio/base.html" %} {% load i18n madga_studio_tags %} {% block title %}Dashboard · {{ site.name|default:"MADGA" }}{% endblock %} {% block breadcrumbs %}Dashboard{% endblock %} {% block content %}

{{ greeting|default:"Hola" }}, {{ request.user.first_name|default:request.user.username }}

{% now "l, j F Y" %} {% if stats.draft or stats.scheduled %} · Tienes {% if stats.draft %}{{ stats.draft }} borrador{{ stats.draft|pluralize:"es" }}{% endif %} {% if stats.draft and stats.scheduled %} y {% endif %} {% if stats.scheduled %}{{ stats.scheduled }} programado{{ stats.scheduled|pluralize:"s" }}{% endif %}. {% endif %}

{# Total #}
{% studio_icon "post" size=13 %} Total posts
{{ stats.total|default:0 }}
{% if stats.created_last_30d %}
{% studio_icon "chevron-up" size=11 stroke=2.5 %} +{{ stats.created_last_30d }} en 30 días
{% else %}
Aún sin actividad
{% endif %} {% if stats.spark_total %} {% endif %}
{# Published #}
{% studio_icon "check" size=13 %} Publicados
{{ stats.published|default:0 }}
{% if stats.published_last_7d %}
{% studio_icon "chevron-up" size=11 stroke=2.5 %} +{{ stats.published_last_7d }} esta semana
{% else %}
Sin publicaciones recientes
{% endif %} {% if stats.spark_published %} {% endif %}
{# Drafts #}
{% studio_icon "edit" size=13 %} Borradores
{{ stats.draft|default:0 }}
{{ stats.scheduled|default:0 }} programado{{ stats.scheduled|default:0|pluralize:"s" }}
{% if stats.spark_drafts %} {% endif %}
{# Views #}
{% studio_icon "eye" size=13 %} Vistas totales
{{ stats.views_total|default:0 }}
{% if stats.views_delta_pct is not None %} {% if stats.views_delta_pct >= 0 %}
{% studio_icon "chevron-up" size=11 stroke=2.5 %} +{{ stats.views_delta_pct }}% vs mes pasado
{% else %}
{% studio_icon "chevron-down" size=11 stroke=2.5 %} {{ stats.views_delta_pct }}% vs mes pasado
{% endif %} {% else %}
Aún sin histórico
{% endif %} {% if stats.spark_views %} {% endif %}

Posts recientes

Lo último en el sitio

{% studio_btn label="Ver todos" href="/studio/posts/" variant="ghost" size="sm" icon="chevron-right" %}
{% for post in recent_posts %}
{{ post.title|default:"Sin título" }}
{% studio_badge post.status post.get_status_display %} {{ post.author.username|default:"—" }} {{ post.updated_at|date:"M j" }}
{% if post.status == 'published' %}
{% studio_icon "eye" size=13 stroke=2 %}{{ post.views }}
{% endif %}
{% empty %} {% studio_empty title="Aún no hay posts" message="Crea el primero y aparecerá aquí." action_label="Nuevo post" action_href="/studio/posts/new/" %} {% endfor %}

Actividad

Últimos cambios en este sitio

{% if recent_activity %} {% for ev in recent_activity %}
{{ ev.title|first|upper|default:"·" }}
{{ ev.label }}: {{ ev.title }}
hace {{ ev.when|timesince }}
{% endfor %} {% else %}
Cuando publiques o subas algo, aparecerá aquí.
{% endif %}
{% endblock %}