{% extends "admin/layout.html.twig" %} {% block content %}

{{ client.lastname | nzo_decrypt }} "{{ client.enseigne }}"

Information générales

N° Client : {{ client.codeClient }}
Prénom : {{ client.Firstname }}
Nom : {{ client.lastname|nzo_decrypt }}
Enseigne : {{ client.enseigne }}
Adresse : {{ client.address|nzo_decrypt }}
Code postal: {{ client.postalCode }}
Ville : {{ client.City }}
Téléphone {{ client.phone|nzo_decrypt }}
E-mail {{ client.email|nzo_decrypt }}

    Liste des distributeurs

    {% if distributeurs is empty %}
  • {% endif %} {% for list_dist in distributeurs %}
  • {{ list_dist.type }} {{ list_dist.code }} {{ list_dist.addressSetup| nzo_decrypt }}
  • {% endfor %}

Mailing en cours...

    {% if eventDates|length == null %}
  • Aucun mailing en cours !
  • {% else %} {% for mailing in eventDates %} {% set Completed = 0 %} {% for Status in mailing.Dates %} {% if Status.Status == 'completed' %} {% set Completed = Completed + 1 %} {% endif %} {% endfor %}
  • {{mailing.distributeur.code}} {{mailing.name}} : {{Completed}}/{{mailing.Dates| length}}
  • {% endfor %} {% endif %}

Commentaire

Commentaires:

{% for comment in client.comments %}
{{ comment.createAt | date('d/m/y H:i') }} {{ comment.authorName }}:
{{ comment.content | raw }}
{% endfor %} {{ form_start(commentForm) }} {{ form_row(commentForm.content, {'attr':{'placeholder':'Votre Commentaire'}}) }} {{ form_end(commentForm) }}
{% endblock %}