{% extends 'base.html.twig' %} {% block title %}Liste des chantiers{% endblock %} {% block header %} {{ parent() }} {% endblock %} {% block stylesheets %} {% endblock %} {% block body %}

Liste des chantiers


Ajouter un chantier
{% for chantier in chantiers %} {% if chantier.dateDelete is null %} {% endif %} {% endfor %}
Chantier Clients Entreprise Adresse Conducteur de travaux Date d'ouverture Date de clôture prévisionnelle Montant marché initial
{{ chantier.libelle }}
{% for chantierClient in chantier.chantierClients %} {{ chantierClient.client.nom }} {% endfor %}
{{ chantier.entreprise.nom }} {{ chantier.adresse1 }} {% if chantier.adresse2 is not null %}
{{ chantier.adresse2 }}{% endif %}
{{ chantier.codePostal }} {{ chantier.ville }}
{{ chantier.conducteurTravaux.prenom }} {{ chantier.conducteurTravaux.nom }} {{ chantier.dateOuverture ? chantier.dateOuverture|date('d/m/Y') : 'Non renseignée' }} {{ chantier.dateCloturePrevisionnelle ? chantier.dateCloturePrevisionnelle|date('d/m/Y') : 'Non renseignée' }} {{ chantier.montantMarcheInitial }}
Ajouter un chantier
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}