{# @author: Benjamin AMOUZOU #} {% extends "commercial/template-commercial.html.twig" %} {% block titre_enfant %} Fournisseurs {% endblock %} {% block contenu_principal_commercial %}
{% include('template-message.html.twig') %}
Fournisseurs  {{total}}
  Nouveau
{% set nbre = 0 %} {% for fournisseur in fournisseurs %} {% set nbre = nbre + 1 %} {% endfor %}
# Dénomination Interlocuteur Poste Contacts Action
{{nbre}} {{ fournisseur.denomination|upper }} {% if fournisseur.personneContacts is defined and fournisseur.personneContacts is not empty %} {#Affichage de M. et Mme en fonction du sexe#} {% if fournisseur.personneContacts[0].sexe == 'F'%} {{'Mme'}} {% else %} {{'M.'}} {% endif %} {{fournisseur.personneContacts[0].nom|upper}} {{fournisseur.personneContacts[0].prenoms}} {% endif %} {% if fournisseur.personneContacts is defined and fournisseur.personneContacts is not empty %} {{fournisseur.personneContacts[0].poste}} {% endif %} {% if fournisseur.personneContacts is defined and fournisseur.personneContacts is not empty %} {% set contacts = fournisseur.personneContacts[0].contacts|split('/') %} {{contacts[0]}} {% endif %}       {% if is_granted('ROLE_ADMIN') %} {% endif %}
{{ knp_pagination_render(fournisseurs, 'template-paginator.html.twig') }}
{% endblock %}