{% extends 'base.html' %} {% block content %} {# Safety fallback for undefined products variable #} {% if products is not defined %} {% set products = recent_products if recent_products else [] %} {% endif %}
Latest Tech

SwiftPhone 15 Pro
Titanium Build.

The most powerful and elegant smartphone we've ever created. Now available.

Shop Now

Professional
Audio Gear

Discover
{# 1. Recently Viewed #} {% if recent_products %}
Recently Viewed View All
{% for product in recent_products %}
{{ product.category.name if product.category else 'Premium' }}

{{ product.name }}

{% set reviews = product.reviews %} {% if reviews|length > 0 %} {% set avg_rating = (reviews|sum(attribute='rating') / reviews|length)|round(1) %}
{{ avg_rating }}
{% endif %}
{{ currency }} {{ "{:,.0f}".format(product.price) }}
{% endfor %}
{% endif %} {# 2. Gifts for every occasion #} {% if gift_products %}
Gifts for every occasion
{% for product in gift_products %}

{{ product.name }}

{{ currency }} {{ "{:,.0f}".format(product.price) }}
{% endfor %}
{% endif %} {# 3. Big Deals #} {% if deal_products %}
Today's Big Deals
{% for product in deal_products %}
{% if product.discount_price > 0 %} SALE {% endif %}
{{ product.category.name if product.category else 'Premium' }}

{{ product.name }}

{% set reviews = product.reviews %} {% if reviews|length > 0 %} {% set avg_rating = (reviews|sum(attribute='rating') / reviews|length)|round(1) %}
{{ avg_rating }}
{% 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 %}
{{ currency }} {{ "{:,.0f}".format(product.price) }}
{% endfor %}
{% endif %} {# 4. Video Showcases #} {% if video_products %}
Video Showcases New
{% for product in video_products %}
Video Demo

{{ product.name }}

{{ currency }} {{ "{:,.0f}".format(product.price) }}
{% endfor %}
{% endif %} {% endblock %}