{% extends 'base.html.twig' %} {% block title %}{{ voiture.marque.nom }} {{ voiture.modele }}{% endblock %} {% block body %}
← Retour à la liste
{# Image de couverture #} {{ voiture.marque.nom }} {{ voiture.modele }} {# Galerie d'images #} {% if voiture.images|length > 0 %}

Galerie photos

{% for image in voiture.images %}
Photo {{ loop.index }}
{% endfor %}
{% endif %}

{{ voiture.marque.nom }} {{ voiture.modele }}

{{ voiture.prix|number_format(2, ',', ' ') }} €

Caractéristiques
{% if voiture.anneeCirculation %} {% endif %} {% if voiture.carburant %} {% endif %} {% if voiture.transmission %} {% endif %} {% if voiture.puissance %} {% endif %} {% if voiture.cylindree %} {% endif %} {% if voiture.nombreProprietaires %} {% endif %}
Kilométrage {{ voiture.kilometrage|number_format(0, ',', ' ') }} km
Année {{ voiture.anneeCirculation }}
Carburant {{ voiture.carburant }}
Transmission {{ voiture.transmission }}
Puissance {{ voiture.puissance }} CV
Cylindrée {{ voiture.cylindree }}
Propriétaires {{ voiture.nombreProprietaires }}
{% if voiture.description %}
Description

{{ voiture.description }}

{% endif %} {% if voiture.options %}
Options

{{ voiture.options }}

{% endif %}
{% endblock %}