{% extends "base_outlet.html" %} {% block content %}
Fashion Collection

Fashion Outlet

Discover our premium collection of stylish garments

{% for product in products %}
{% if product.variants and product.variants|length > 0 %} {% set image_variant = (product.variants | selectattr('image_path') | list | first) or product.variants[0] %} {% set main_image = image_variant.image_path if image_variant and image_variant.image_path else None %} {% if main_image %} {{ product.product_name }} {% else %}

No Image

{% endif %} {% if product.variants|length > 1 %}
{% for variant in product.variants %} {% if variant.image_path and variant != image_variant %} {% endif %} {% endfor %}
{% endif %} {% else %}

No Image Available

{% endif %}
{{ product.product_name }}
{% if product.lot_details %}

Lot: {{ product.lot_details }}

{% endif %} {% if product.description %}

{{ product.description }}

{% endif %}
Colors: {% if product.colors %} {% for color in product.colors[:4] %} {{ color }} {% endfor %} {% if product.colors|length > 4 %} +{{ product.colors|length - 4 }} {% endif %} {% else %} No colors {% endif %}
Sizes: {% if product.sizes %} {% for size in product.sizes[:4] %} {{ size }} {% endfor %} {% if product.sizes|length > 4 %} +{{ product.sizes|length - 4 }} {% endif %} {% else %} No sizes {% endif %}
{% else %}

No Products Available

Check back later for new arrivals!

{% endfor %}
{% if total_pages > 1 %}

Showing page {{ page }} of {{ total_pages }} ({{ total_products }} products total)

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}