{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}Statistiques SMS{% endblock %} {% block content %}
{# Header Section #}
Retour

Statistiques SMS

Vue d'ensemble de vos envois SMS

{# Today Stats #}

Aujourd'hui

Total envoyés
{{ dashboardStats.today.total }}
Délivrés
{{ dashboardStats.today.delivered }}
En attente
{{ dashboardStats.today.pending }}
Échecs
{{ dashboardStats.today.failed }}
{# This Month Stats #}

Ce mois-ci

Total envoyés
{{ dashboardStats.this_month.total }}
Délivrés
{{ dashboardStats.this_month.delivered }}
En attente
{{ dashboardStats.this_month.pending }}
Échecs
{{ dashboardStats.this_month.failed }}
{# All Time Stats #}

Total (depuis le début)

Total envoyés
{{ dashboardStats.total.total|number_format(0, ',', ' ') }}
Délivrés
{{ dashboardStats.total.delivered|number_format(0, ',', ' ') }}
En attente
{{ dashboardStats.total.pending|number_format(0, ',', ' ') }}
Échecs
{{ dashboardStats.total.failed|number_format(0, ',', ' ') }}
{# Success Rate #}

Taux de réussite global

{% set totalSuccessRate = dashboardStats.total.total > 0 ? ((dashboardStats.total.delivered / dashboardStats.total.total) * 100)|round(2) : 0 %}
{{ totalSuccessRate }}%

{{ dashboardStats.total.delivered|number_format(0, ',', ' ') }} SMS délivrés sur {{ dashboardStats.total.total|number_format(0, ',', ' ') }} envoyés

{# Chart - Last 30 Days #}

Évolution des envois (30 derniers jours)

{% endblock %}