{# templates/storefront/product_detail.html #} {% extends "base.html" %} {% block content %}
{% if product.thumbnail %} {{ product.title }} {% else %}
No image
{% endif %} {# optional thumbnails if you use ProductImage.related_name="images" #} {% if product.images.all %}
{% for im in product.images.all %} {{ im.alt|default:product.title }} {% endfor %}
{% endif %}

{{ product.title }}

{% if product.in_stock %}In stock{% else %}Out of stock{% endif %}
{{ product.category.name }}
$ {{ product.price }} {% if product.unit %}/ {{ product.unit }}{% endif %}
{% if product.weight_grams %}Weight: {{ product.weight_grams }} g{% endif %}
★ {{ product.rating|floatformat:1 }} ({{ product.reviews_count }} reviews)

{{ product.description }}

{% csrf_token %} View cart Checkout
{% if not product.in_stock %}
This item is currently unavailable.
{% endif %}

Reviews ({{ product.reviews_count }})

{% if rev_categories %}
{% endif %}
{% if reviews %} {% else %}
No reviews yet.
{% endif %}

Write a review

{% if messages %} {% for m in messages %}
{{ m }}
{% endfor %} {% endif %}
{# keep existing form area intact; nothing here #}
{% csrf_token %}
{% if rev_categories %}
{% for rc in rev_categories %} {% endfor %}
{% endif %} {% if not request.user.is_authenticated %}
{% endif %}
Reviews are moderated. Your review will appear after approval.
{% endblock %}