{% extends 'base.html.twig' %} {% block title %}Vehicule index{% endblock %} {% block body %}

Vehicule index

{% for vehicule in vehicules %} {% else %} {% endfor %}
Id Immatriculation Loueur CoutMensuel Modele DateDebutContrat DateFinContrat Actif actions
{{ vehicule.id }} {{ vehicule.immatriculation }} {{ vehicule.loueur }} {{ vehicule.coutMensuel }} {{ vehicule.modele }} {{ vehicule.dateDebutContrat ? vehicule.dateDebutContrat|date('Y-m-d') : '' }} {{ vehicule.DateFinContrat ? vehicule.DateFinContrat|date('Y-m-d') : '' }} {{ vehicule.actif ? 'Yes' : 'No' }} show edit
no records found
Create new {% endblock %}