{% load i18n lfs_tags %} {% if products %} {% for product in products %} {% endfor %}
{% if product.get_image %} {{ product.get_name }} {% endif %} {{ product.get_name }} {% for property in product.get_variant_properties %}
{{ property.title }} : {{ property.value }} {{ property.unit|safe }}
{% endfor %} {% for property in product.get_displayed_properties %}
{{ property.title }} : {{ property.value }} {{ property.unit|safe }}
{% endfor %}
{{ product|get_price_gross:request|currency:request}}* {% if product.get_price_unit %}/ {{ product.get_price_unit }}{% endif %}
{% if product.active_base_price %}
{{ product|get_base_price_gross:request|currency:request}}* {% if product.get_base_price_unit %}/ {{ product.get_base_price_unit }}{% endif %}
{% endif %}
{% trans 'All results' %} ({{ total }})
{% else %}

{% trans 'No products found' %}

{% endif %}