{% extends 'base.html' %} {% load static %} {% block content %}
{% csrf_token %}

{{ single_product.product_name }}

({{ single_product.averageReview|floatformat:1 }} out of 5)
$ {{single_product.price}}
Stock: {% if single_product.stock > 0 %} {{ single_product.stock }} available {% else %} Out of Stock {% endif %}

{{ single_product.description }}


Choose Color
Select Size

{% if single_product.stock <= 0 %}
Out of Stock
{% else %} {% endif %}

{% csrf_token %}
Write Your Review

{% if user.is_authenticated %} {% else %}

You must be logged in to post a review. Login now

{% endif %} {% include 'includes/alerts.html' %}

Customer Reviews

{{single_product.countReview}} reviews
{% for review in reviews %}
{{ review.updated_at }}
{{ review.user.full_name }}
{{ review.subject }}

{{ review.review }}

{% endfor %}
{% endblock %}