|
{% include 'AppBundle:Documents:v2\\Include\\Global\\title_content.html.twig' with {'title' : 'Caractéristiques'} %}
{% include 'AppBundle:Documents:v2\\Include\\Vehicle\\vehicle_content.html.twig'
with {
'numberItemsPerLine' : 3,
'cellValueClass' : 'fs-26 lh-32 fw-400 t-black',
'items' : [
{'label' : 'Mise en circulation', 'value' : vehicleF.getDateOfDistribution(vehicle, {})},
{'label' : 'Puissance fiscale', 'value' : vehicleF.getTaxHorsePower(vehicle, {})},
{'label' : 'Energie', 'value' : vehicleF.getEnergy(vehicle, {})},
{'label' : 'Kilométrage ' ~ vehicleF.getDistanceTraveledWarranty(vehicle, {}), 'value' : vehicleF.getDistanceTraveled(vehicle, {"afterValue": "Km"})},
{'label' : 'Immatriculation', 'value' : vehicleF.getLicenseNumber(vehicle, {"afterValue": ""})},
{'label' : 'Numéro de série', 'value' : vehicleF.getVin(vehicle, {'truncate': 40})},
{'label' : 'Provenance', 'value' : vehicleFollowF.getOrigin(vehicle.follow, {'truncate': 40})},
{'label' : 'Durée de la garantie', 'value' : vehicleF.getWarrantyDuration(vehicle, {}), 'emptyValueNotDisplay' : true},
{'label' : 'Libellé de garantie', 'value' : vehicleF.getWarranty(vehicle, {'truncate': 40})},
{'label' : '', 'value' : vehicleF.getAirQualityCertificationUrl(vehicle, {}), 'isImage': true, 'imageWidth': 'w-50'}
]
}
%}
|
|