{% extends "base.html" %} {% block styles %} {% endblock %} {% block scripts %} {% endblock %} {% block content %}

{{ product.name }}

{% if product.stock > 10 %} ✓ In Stock ({{ product.stock }} available) {% elif product.stock > 0 %} ⚠ Low Stock (Only {{ product.stock }} left!) {% else %} ✗ Out of Stock {% endif %}
{% if product.average_rating > 0 %}
{% for i in range(5) %} {% endfor %}
{{ product.average_rating }}/5 ({{ product.review_count }} reviews)
{% endif %}
${{ "%.2f"|format(product.price) }}
{% if product.sku %}
SKU: {{ product.sku }}
{% endif %} {% if product.company %}
Brand: {{ product.company }}
{% endif %} {% if product.color %}
Color: {{ product.color }}
{% endif %} {% if product.size %}
Size: {{ product.size }}
{% endif %} {% if product.category %}
Category: {{ product.category.name }}
{% endif %}

Description

{{ product.description or 'No description available.' }}

{% if product.material or product.weight or product.dimensions %}

Specifications

{% if product.material %}
Material: {{ product.material }}
{% endif %} {% if product.weight %}
Weight: {{ product.weight }} kg
{% endif %} {% if product.dimensions %}
Dimensions: {{ product.dimensions }}
{% endif %}
{% endif %}
{% if current_user.is_authenticated and product.stock > 0 %} Add to Cart {% elif current_user.is_authenticated %} {% else %} Login to Purchase {% endif %} ← Back to Products
{% if related_products %} {% endif %}
{% endblock %}