{# params include #}
{% set nbVehicleStandardEquipment = 14 %}
{% set isCotation = true %}
{% include TEMPLATE_VEHICLE_STANDARD_EQUIPMENT %}
{# params include #}
{% set nbVehicleOptionalEquipment = 14 %}
{% set priceOptionsOptional = false %}
{% include TEMPLATE_VEHICLE_OPTIONAL_EQUIPMENT %}
{% set difference = date(rental.startDate).diff(date(rental.returnDate)) %}
{% set leftYears = difference.y %}
{% set leftMonths = difference.m %}
{% set leftDays = difference.days %}
{% set leftHours = difference.h %}
{% if leftYears is not empty and leftYears != 0 %}{{ difference|date('%y ans') }}{% endif %}
{% if leftMonths is not empty and leftMonths != 0 %}{{ difference|date('%m mois') }}{% endif %}
{% if leftDays is not empty and leftDays != 0 %}{{ difference|date('%d jours') }}{% endif %}
{% if leftHours is not empty %}{{ difference|date('%h heures') }}{% endif %}
{% if rental.rentalPricing.predicatedKm is not empty %} {{ 'and'|trans({}, 'DocumentTrans' )}} {{ rental.rentalPricing.predicatedKm }} km {% endif %}
{% if rental.sellPriceWithTax is not empty %}
{{ rental.sellPriceWithTax|number_format(2, ',', ' ') }} {{ currencySymbol }}
{% endif %}
{% if rental.sellPriceWithTax is not empty %}
{{ rental.sellPriceWithTax|number_format(2, ',', ' ') }} {{ currencySymbol }}
{% endif %}
{{ 'comments'|trans({}, 'DocumentTrans' )}} :
{% if rental.note is not empty %}
{{ rental.note }}
{% endif %}
{% if vehicleMediaList is defined and vehicleMediaList is not empty %}
{% for image in vehicleMediaList %}
{% if loop.index0%2 == 0 %}
{% if loop.index0 > 1 %}
{% endif %}
{% endif %}
{% set containerImgWidth = 500 %}
{% set containerImgHeight = 300 %}
{% include TEMPLATE_IMAGE %}