{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}Détails de la campagne{% endblock %} {% block content %}
Campagne créée le {{ campaign.createdAt|date('d/m/Y à H:i') }} par {{ campaign.createdBy.fullName }}
{{ campaign.campaignLines[0].message }}
| Destinataire | Téléphone | Statut | Envoyé le |
|---|---|---|---|
|
{{ line.user.fullName|slice(0, 1)|upper }}
{{ line.user.fullName }}
{{ line.user.email }}
|
{# Phone #}
{{ line.recipient }}
|
{# Status #}
{% if line.statusId == 3 %} {{ line.statusLabel }} {% elseif line.statusId == 1 %} {{ line.statusLabel }} {% elseif line.statusId == 2 %} {{ line.statusLabel }} {% elseif line.statusId == 4 %} {{ line.statusLabel }} {% elseif line.statusId == 5 %} {{ line.statusLabel }} {% else %} {{ line.statusLabel }} {% endif %} | {# Sent Date #}{{ line.createdAt|date('d/m/Y H:i:s') }} |