{% extends'@admin/base.html.twig' %} {% block extra_scripts %} {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block subheader %}
{# ◀️ Breadcrumb à gauche #} {# ✅ Boutons à droite #}
Modifier
{% endblock %} {% block breadcrumb %}{% endblock %} {% block stat %}{% endblock %} {% block bodycontent %}
{# Colonne gauche - Profil fournisseurs et statistiques #}
{% if user.logo is defined and user.logo %} Logo {# fallback icône si image cassée #} {% if user.type == 'personne_physique' %} {% else %} {% endif %} {% else %} {% if user.type == 'personne_physique' %} {% else %} {% endif %} {% endif %}
{# Infos fournisseur #}
{{ user.raisonSociale is defined and user.raisonSociale ? user.raisonSociale : user.name }}
{# Type (Société ou Personne physique) #}
{% if user.type == 'societe' %} Société {% elseif user.type == 'personne_physique' %} Personne physique {% else %} Fournisseur {% endif %}
{# Date de création #} {% if user.createdAt %}
Créé le {{ user.createdAt|date("d/m/Y à H:i") }}
{% endif %} {# statut fournisseur #}
{{ user.isActive ? 'Actif' : 'Inactif' }}
{# Email #} {% if user.email %} {% endif %} {# Téléphones #} {% if user.phone %}
{{ user.phone }} {% if user.secondPhone %} | {{ user.secondPhone }} {% endif %}
{% endif %} {# Adresse complète #} {% if user.adress %}
{{ user.adress }} {% if user.city %}, {{ user.city }}{% endif %} {% if user.region %} - {{ user.region }}{% endif %} {% if user.country %}, {{ user.country }}{% endif %}
{% endif %} {# Responsable #} {% if user.nameResponsable or user.phoneResponsible1 %}
Responsable
{% if user.civility is defined and user.civility %}{{ user.civility }} {% endif %} {{ user.nameResponsable }}
{% if user.phoneResponsible1 %}
{{ user.phoneResponsible1 }} {% if user.phoneResponsible2 %} | {{ user.phoneResponsible2 }} {% endif %}
{% endif %}
{% endif %}
{# ligne nécesaire pour récupérer la liste des document du fournisseur #}
{# Statistiques #}
{# Les onglets #}
{# ▸ tab infos #}
{% include '@admin/supplier/_tab/tab_infos_profile.html.twig' %}
{# ▸ tab adresses #}
{% include '@admin/supplier/_tab/tab_adresses.html.twig' %}
{% include '@admin/supplier/_tab/tab_documents.html.twig' %}
{% include '@admin/supplier/_tab/tab_statistiques.html.twig' %}
{{ include('@admin/supplier/_tab/tab_comments.html.twig') }}
{% endblock %} {% block js %} {{ parent() }} {% endblock %}