{% load i18n lfs_tags %} {% if products %}
{% if product.get_image %}
|
{{product.get_name}}
{% for option in product.get_options %}
{% if option.property.display_on_product %}
{{option.property.name}} : {{option.value|option_name}} {{ option.property.unit|safe }}
{% endif %}
{% endfor %}
|
{{product.get_price|currency}} |
{% trans 'All results' %} ({{ total }}) |
{% trans 'No products found' %}
{% endif %}