{% 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_displayed_properties %}
{{ property.title }} : {{ property.value }} {{ property.unit|safe }}
{% endfor %}
{{ product.get_price|currency }}* {% if product.price_unit %}/ {{ product.price_unit }}{% endif %}
{% trans 'All results' %} ({{ total }})
{% else %}

{% trans 'No products found' %}

{% endif %}