{% load i18n lfs_tags %} {% if products %}
{% if product.get_image %}
|
{{ 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:request|currency }}* {% if product.price_unit %}/ {{ product.price_unit }}{% endif %} |
{% trans 'All results' %} ({{ total }}) |
{% trans 'No products found' %}
{% endif %}