{% extends 'admin/base_admin.html.twig' %} {% block title %}Vendeurs & Partenaires — Admin{% endblock %} {% block content %}

Vendeurs & Partenaires

Taux de commission
{# ── Statistiques rapides ── #}
{% set total = vendeurs|length %} {% set actifs = vendeurs|filter(v => v.actif)|length %}
{{ total }}
Vendeurs total
{{ actifs }}
Vendeurs actifs
{% for statut, label in statuts %} {% if statut != 'client_gratuit' %}
{{ vendeurs|filter(v => v.statut == statut)|length }}
{{ label }}
{% if taux[statut] is defined %}
{{ taux[statut] }}%
{% endif %}
{% endif %} {% endfor %}
{# ── Tableau des vendeurs ── #}
Liste des vendeurs {# Filtre par statut #}
Tous {% for statut, label in statuts %} {{ label }} {% endfor %}
{% for vendeur in vendeurs %} {% else %} {% endfor %}
Vendeur Statut Code promo Taux Ventes Commission due État Inscrit le
{{ vendeur.user.fullName }}
{{ vendeur.user.email }}
{{ vendeur.statutLabel }} {% if vendeur.codePromo %} {{ vendeur.codePromo }} {% else %} {% endif %} {{ vendeur.tauxCommission }}% {{ vendeur.nbVentes }} {{ vendeur.montantCommissionsNonFacturees|number_format(2, ',', ' ') }} € HT {% if vendeur.actif %} Actif {% else %} Inactif {% endif %} {{ vendeur.createdAt|date('d/m/Y') }} Voir
Aucun vendeur enregistré.
{% endblock %}