{% extends "client_base.html" %} {% load static %} {% block title %}Products{% endblock %} {% block content %}
    {% comment %}
  • {% endcomment %}
{% if product.brand %} {{product.brand}} {% endif %}

{{product.product.product_name}}

{{product.product.description}}

0 Review {{product.product.total_sold_count.sold_qty|floatformat:0}} Sold MOQ: {{product.product.moq}}

{% comment %}

{% endcomment %}

{% if attribute_list %}

Size:

{% comment %}
{% for size in attribute_list %}
{% endfor %}
{% endcomment %}
{% for size in sizes %} {% if size.size__id %}
{% endif %} {% endfor %}
{% endif %}

Color:

{% comment %}
{% for attr in attribute_list %}
{% endfor %}
{% endcomment %}
{% for color in colors %} {% if color.color__id %}
{% endif %} {% endfor %}
Stock: 10

{{product.product.description}}

Rating and Review

5.0

0 reviews

1 0%

2 0%

3 0%

4 0%

5 0%

Reviews

Showing 1 to 0 of 0 results

{% comment %}
icons

Delivery charge

৳ {{delivery_charge.initial_charge|default:"0"}}
icons

Estimated delivery

2-4 days
{% endcomment %}

Similar Product

{% if similar_product_obj %} {% for item in similar_product_obj %}
icons
{{ item.product_name }} {% if item.cover_product_attribute.final_discount.total_discount %}
৳ {{ item.cover_product_attribute.product_final_price }} ৳ {{ item.cover_product_attribute.regular_price }}
{% else %}
৳ {{ item.cover_product_attribute.regular_price }}
{% endif %}

0

{{item.total_sold_count.sold_qty|floatformat:0}} Sold

{% if item.product_stock_status.flag %} Stock: {{item.product_stock_status.stock_qty}} {% else %} Out of stock {% endif %}
{% endfor %} {% else %}
Products not found
{% endif %}
{% endblock %} {% block JS %} {% endblock %}