{% extends 'base.html.twig' %} {% block title %}Planning{% endblock %} {% block body %}
{% if chefChantier %}
{% for planning in plannings %} {% if planning.dateDelete is null %} {% for salarie in planning.salaries %} {% endfor %} {% endif %} {% endfor %}
Chantier Salarié Date de Début Date de Fin
{{ planning.chantier.libelle }} {{ salarie.nom }} {{ salarie.prenom }} {{ planning.dateDebut|date('d/m/Y') }} {{ planning.dateFin|date('d/m/Y') }}
{% endif %} {% set showValidateButton = false %} {% for planning in plannings %} {% if not planning.valide %} {% set showValidateButton = true %} {% endif %} {% endfor %} {% if showValidateButton %} {% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}