{% extends 'base.html' %} {% load static %} {% load i18n %} {% block title %}{% trans "Your Recommendations - Virtual Fitting System" %}{% endblock %} {% block content %}

{% trans "Scan Complete!" %}

{% trans "Here are your personalised results" %}

{% trans "AI Recommended Size" %}

{{ recommended_size }}

{% trans "Based on your body measurements analysed by YOLO + LLM" %}

{% trans "Detected Skin Tone" %}

{{ skin_tone_display }}

{{ undertone_display }} {% trans "undertone" %}

{% trans "Detected from your face selfie using colour analysis" %}

🛍️

{% trans "Products That Fit You" %}

{% trans "All items below are available in your size" %} {{ recommended_size }}

{% if matching_products %}
{% for item in matching_products %}
{% trans "Your Size" %}: {{ item.recommended_size }}
{% if item.product.image %} {{ item.product_name }} {% elif item.product.category == 'shirt' and item.product.gender == 'men' %} {{ item.product_name }} {% elif item.product.category == 'shirt' and item.product.gender == 'women' %} {{ item.product_name }} {% elif item.product.category == 'pants' or item.product.category == 'jeans' %} {{ item.product_name }} {% elif item.product.category == 'dress' %} {{ item.product_name }} {% elif item.product.category == 'jacket' %} {{ item.product_name }} {% else %} {{ item.product_name }} {% endif %}
{{ item.category_label }}

{{ item.product_name }}

{% trans "Your Size" %}

{{ item.recommended_size }}

YER {{ item.product.price }}
{% trans "View Product Details" %}
{% endfor %}
{% else %}

{% trans "No products in size" %} {{ recommended_size }} {% trans "in stock right now" %}

{% trans "Check back later or browse our full catalogue" %}

{% endif %}
{% trans "Browse All Products" %} {% trans "View Your 3D Avatar" %} {% trans "Scan Another Customer" %}
{% endblock %}