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

Historique des SMS

Consultez l'historique complet des envois SMS

{# Filters Section #}
{# Search Field #}
{# Status Filter #}
{# Date From #}
{# Date To #}
{# Filter Actions #}
{# Stats #}
{{ smsLogs.getTotalItemCount }} SMS trouvé(s)
{# SMS Logs Table #}
{% if smsLogs is empty %} {% else %} {% for smsLog in smsLogs %} {# Recipient #} {# Message Preview #} {# Type #} {# Status #} {# Sent Date #} {# Actions #} {% endfor %} {% endif %}
Destinataire Message Type Statut Envoyé le Actions

Aucun SMS trouvé

Les SMS envoyés apparaîtront ici

{{ smsLog.recipient }}
{% if smsLog.user %}
{{ smsLog.user.fullName }}
{% endif %}
{{ smsLog.message|slice(0, 50) }}{% if smsLog.message|length > 50 %}...{% endif %}
{{ smsLog.message|length }} caractères
{% if smsLog.smsType == 'flash' %} Flash {% else %} Normal {% endif %} {% if smsLog.statusId == 3 %} {{ smsLog.statusLabel }} {% elseif smsLog.statusId == 1 %} {{ smsLog.statusLabel }} {% elseif smsLog.statusId == 2 %} {{ smsLog.statusLabel }} {% elseif smsLog.statusId == 4 %} {{ smsLog.statusLabel }} {% elseif smsLog.statusId == 5 %} {{ smsLog.statusLabel }} {% else %} {{ smsLog.statusLabel }} {% endif %} {{ smsLog.createdAt|date('d/m/Y H:i') }} Détails
{# Pagination #} {% if smsLogs.getTotalItemCount > 0 %}
{% if smsLogs.currentPageNumber > 1 %} Précédent {% endif %} {% if smsLogs.currentPageNumber < smsLogs.pageCount %} Suivant {% endif %}
{% endif %}
{% endblock %}