{% extends 'AppBundle:Documents:v2\\standard_layout.html.twig' %}
{% import 'AppBundle:Documents:v2\\Import\\vehicle.html.twig' as vehicleF %}
{% import 'AppBundle:Documents:v2\\Import\\vehicle_follow.html.twig' as vehicleFollowF %}
{% block header %}
{% include 'AppBundle:Documents:v2\\Include\\Vehicle\\advertising_paper_portrait_header.html.twig'
with {
'asideLabel' : 'Numéro de police : ',
'asideValue' : vehicleF.getVo(vehicle, {'previousValue': ''}),
'titleBrand' : vehicleF.getBrand(vehicle, {}),
'titleModel' : vehicleF.getModel(vehicle, {'truncate': 45}),
'titleVersion' : vehicleF.getVersion(vehicle, {'truncate': 90}),
'width1' : '4',
'width2' : '92',
'asideClass' : 'aside-landscape'
}
%}
{% endblock header %}
{% block main_title %}{% endblock main_title %}
{% block content %}
{% include 'AppBundle:Documents:v2\\Include\\Global\\title_content.html.twig' with {'title': 'Caractéristiques', 'landscapeSpace' : true} %}
{% include 'AppBundle:Documents:v2\\Include\\Vehicle\\array_content_plv.html.twig'
with {
'tdWidth' : [20,20,20,30],
'tdWidth2' : '4',
'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 non garanti', 'value' : vehicleF.getDistanceTraveled(vehicle, {"afterValue": "Km"})},
]
}
%}
{% include 'AppBundle:Documents:v2\\Include\\Vehicle\\array_content_plv.html.twig'
with {
'tdWidth' : [20,20,20,30],
'tdWidth2' : '4',
'items' : [
{'label' : 'Provenance', 'value' : vehicleFollowF.getOrigin(vehicle.follow, {'truncate': 40})},
{'label' : 'Origine', 'value' : vehicleF.getCountry(vehicle, {'truncate': 40, 'countries': countries})},
{'label' : 'Immatriculation', 'value' : vehicleF.getLicenseNumber(vehicle, {"afterValue": ""})},
{'label' : 'Numéro de série', 'value' : vehicleF.getVin(vehicle, {'truncate': 40})},
]
}
%}
{% include 'AppBundle:Documents:v2\\Include\\Vehicle\\array_content_plv.html.twig'
with {
'tdWidth' : [20,70],
'tdWidth2' : '4',
'items' : [
{'label' : 'Durée de la garantie', 'value' : vehicleF.getWarrantyDuration(vehicle, {})},
{'label' : 'Libellé de garantie', 'value' : vehicleF.getWarranty(vehicle, {'truncate': 40})},
]
}
%}
|
Équipement de série |
|
|
|
Équipement en option |
|
|
|
{{ vehicleF.getEquipmentStandardList(vehicle, {
'truncate': 40,
'maxElt' : 30,
'previousValue': '- ',
'afterValue': '
',
'isTwoColumn': true,
'firstColumn': '',
'secondColumn': ' | ',
}) }}
|
{{ vehicleF.getEquipmentOptionalList(vehicle, {
'truncate': 45,
'maxElt' : 14,
'previousValue': ' - ',
'afterValue': ' ',
'isTwoColumn' : false,
'displayPrice' : true,
}) }}
|
{% include 'AppBundle:Documents:v2\\Include\\Global\\title_content.html.twig' with {'title' : 'Prix (hors frais supplementaires)'} %}
|
{{ vehicleF.getPricePublic(vehicle, {'afterValue': ''}) }} |
|
ttc |
{% endblock content %}
{% block signature %}{% endblock signature %}
{% block footer %}{% endblock footer %}