{% extends 'base.html.twig' %} {% block title %} {{ 'Search result'|trans }} {% endblock %} {% block body %} {% set allowedAttributes = [ 'model', 'date', 'manufactured', 'countrycode', 'modelyearfrom', 'destinationregion', 'engine', 'equipment', 'framecolor', 'creationregion', 'body', 'bodydesc', 'chassis', 'engineNo', 'modelCode', 'aggregates', 'description', ] %} {% for vehicle in vehicles %}

{{ vehicle.brand }} {{ vehicle.model }}

{{ 'Tree catalog'|trans }} {{ 'Image catalog'|trans }}
{{ wo_render_breadcrumbs() }}
{% for key,attribute in vehicle.attributes %} {% if key in allowedAttributes %} {% endif %} {% endfor %}
{{ 'Parameter'|trans }} {{ 'Value'|trans }}
{{ 'Name'|trans }} {{ vehicle.model }}
{{ attribute.label|trans }} {{ attribute.values|join(' ') }}
{{ catalogInfo.name }}
{% endfor %}
{% endblock %}