{% extends "base.html" %} {% set active = "dashboard" %} {% block title %}Inicio · ArcaBeauty Club{% endblock %} {% block content %}
Resumen del día

Hola de nuevo — {{ hoy }}

+ Nueva cita
Citas de hoy {{ citas_hoy|length }} en sucursal Centro
Ventas de hoy ${{ "%.0f"|format(ventas_hoy.total) }} {{ ventas_hoy.n }} ticket(s)
Clientes registrados {{ clientes_total }} expediente digital
Reservas online pendientes {{ citas_pendientes_online }} por confirmar

Agenda de hoy

{% if citas_hoy %} {% for c in citas_hoy %} {% endfor %}
HoraClienteServicioProfesionalEstado
{{ c.hora_inicio }} {{ c.cliente_nombre }} {{ c.servicio_nombre }} {{ c.empleado_nombre }} {{ c.estado }}
{% else %}
Sin citas todavía

Cuando se agenden citas para hoy, aparecerán aquí.

{% endif %}

Alertas de inventario

{% if stock_bajo %} {% for p in stock_bajo %} {% endfor %}
ProductoStockMínimo
{{ p.nombre }} {{ p.stock }} {{ p.stock_minimo }}
{% else %}
Inventario saludable

Ningún producto está por debajo de su mínimo.

{% endif %}
{% endblock %}