{% extends 'base.html' %} {% block content %} {% if current_filters.on_sale == 'true' and physical_sale_products %} {% else %}

{% if current_filters.cat_id %} {% set active_cat = categories|selectattr('id', 'equalto', current_filters.cat_id|int)|first %} {{ active_cat.name if active_cat else 'Premium Items' }} {% elif current_filters.brand %} {{ current_filters.brand }} Boutique {% else %} Curated Collection {% endif %}

Showing {{ products|length }} exclusive items discovered for you

{% endif %}
Show Deals Only
{% if products %}
{% for product in products %}
{% if product.discount_price > 0 %} Limited Offer {% endif %} {% if top_seller_names is defined and product.name in top_seller_names %} Best Seller {% else %} {% endif %}
{{ product.category.name if product.category else 'Exclusive' }}
{{ product.name }}
{% set reviews = product.reviews %} {% if reviews|length > 0 %} {% set avg_rating = (reviews|sum(attribute='rating') / reviews|length)|round(1) %}
{{ avg_rating }} ({{ reviews|length }})
{% endif %} {% if product.show_in_deals %} {% if product.flash_sale_end %}
Ends: {{ product.flash_sale_end.strftime('%d %b, %I:%M %p') }}
{% endif %} {% if product.flash_sale_video %} Watch Video {% endif %} {% endif %}
{% endfor %}
{% else %}

No pieces found

We couldn't find any items matching your current filters.

Clear All Filters
{% endif %}
{% endblock %}