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

Envíos Exitosos

{{ stats.total_exitosos or 0 }}

Envíos Fallidos

{{ stats.total_errores or 0 }}

Terceros

{{ stats.total_terceros or 0 }}

Transacciones

{{ stats.total_transacciones or 0 }}

Últimos Envíos

{% if ultimos %}
{% for e in ultimos %} {% endfor %}
Tipo Factura Estado Fecha Usuario
{{ e.tipo }} {{ e.factura or '-' }} {{ 'Exitoso' if e.status == 'success' else 'Error' }} {{ e.created_at[:19] }} {{ e.username }}
{% else %}

No hay envíos registrados

Usa el menú lateral para comenzar

{% endif %}

Acciones Rápidas

{% endblock %}