{% extends 'base.html.twig' %} {% block title %}Tableau de bord{% endblock %} {% block title_page %}Tableau de bord{% endblock %} {% block container_start %} {% for company in tabCompaniesProducts %}

{{ company.company.name }}

{% for product in company.products %} {% endfor %}
Name Référence Préfixe Nombre créé Nombre disponible Nombre sur site
{{ product.product.name }} {{ product.product.reference }} {{ company.company.prefix }}{{ product.product.prefixReference }} {{ product.createdNumber }} {{ product.nbAvailable }} {{ product.nbOnSite }}
{% endfor %} {% if is_granted("ROLE_STATISTICAL_MTN") %}

Liste des maintenances

{% if is_granted("ROLE_STATISTICAL_POSE") %} {% for pose in stats.pose %} {% endfor %} {% endif %} {% if is_granted("ROLE_STATISTICAL_DEPOSIT") %} {% for depose in stats.depose %} {% endfor %} {% endif %} {% if is_granted("ROLE_STATISTICAL_MAINTENANCE") %} {% for maintenance in stats.maintenance %} {% endfor %} {% endif %}
Mois en cours M-1 M-2 M-3
Pose{{ pose.maintenance | length }}
Dépose{{ depose.maintenance | length }}
Maintenance{{ maintenance.maintenance | length }}
{% endif %} {% endblock %} {% block container_col_left %} {% endblock %} {% block container_col_right %} {% endblock %}