{% extends 'base.html.twig' %} {% block body %}

Historique

{{ allSellings |length }} Clients

{{ chiffreAffaires }} Chiffre d'affaires

{% if allSellings %} {{ (chiffreAffaires / (allSellings |length))|round }} {% else %} ? {% endif %} € panier moyen


Statistiques de ventes

{{ statisticsFestivals |length }} Festival {% if statisticsFestivals |length >1 %} s {% endif %}

{{ recentSells |length }} Dernières ventes

date
commentaire
produits
montant
{% for vente in recentSells %}
{{ vente.date |date('Y-m-d H:i:s') }}
{{ vente.comment }}
{{ vente.productsSold |length }}
{{ vente.amount }}
{% endfor %}
{% include ':logged:history-script.html.twig' %} {% endblock %}