{% if total_product > 0 %} {% for product in products %}

{{ product.name }}

{{ product.description }}

{% if product.rating %}
{% for i in 1..5 %} {% if product.rating < i %} {% else %} {% endif %} {% endfor %}
{% else %}
{% for i in 1..5 %} {% endfor %}
{% endif %} {% if product.price %}
{% if not product.special %} {{ product.price }} {% else %} {{ product.special }} {{ product.price }} {% endif %}
{% endif %}
{% endfor %} {% else %}

There is no product that matches the search criteria.

{% endif %}