{% extends 'base.html' %} {% load humanize %} {% block title %}{{ product.name }} — Chiez Stores{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if product.image %} {{ product.name }} {% else %}
No Image
{% endif %}
{% if product.image or product.image2 or product.image3 %}
{% if product.image %}
{% endif %} {% if product.image2 %}
{% endif %} {% if product.image3 %}
{% endif %}
{% endif %}
{{ product.category.name }}

{{ product.name }}

{% for i in "12345" %}{% if forloop.counter <= product.average_rating %}★{% else %}☆{% endif %}{% endfor %}
{% if product.review_count > 0 %} {{ product.average_rating }} ({{ product.review_count }} review{{ product.review_count|pluralize }}) {% else %}No reviews yet{% endif %}
₦{{ product.effective_price|floatformat:0|intcomma }} {% if product.discount_price %} ₦{{ product.price|floatformat:0|intcomma }} Save {{ product.discount_percent }}% {% endif %}
{% csrf_token %} {% if product.get_sizes %}
Size
{% for sz in product.get_sizes %} {% endfor %}
{% endif %} {% if product.get_colors %}
Color
{% for col in product.get_colors %} {% endfor %}
{% endif %}
Quantity
{% if product.in_stock %} {% else %} {% endif %} {% if user.is_authenticated %} {% csrf_token %} {% else %} {% endif %}
Availability: {% if product.in_stock %}In Stock ({{ product.stock }} left){% else %}Out of Stock{% endif %}
Delivery: Standard 3–5 days | Express 1–2 days
Returns: 7-day return policy
Secure: SSL-encrypted checkout
{{ product.description|linebreaks }}
{% if related_products %}

Related Products

{% for rp in related_products %} {% with product=rp %} {% include 'store/partials/product_card.html' %} {% endwith %} {% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}