{% extends "user_dashboard_base.html" %} {% load static %} {% block title %}Dashboard{% endblock %} {% block content %}

Dashboard

{% comment %} {% endcomment %} {% comment %}

94 box-tick

Products Ordered

{% endcomment %}
My Cart ({{cart_list|length}} items)
{% if cart_list %} {% for item in cart_list %}
...
{% if obj.brand %} {{obj.brand}} {% endif %}

{{item.product.product_name}}

{% if item.product.cover_product_attribute.final_discount.total_discount %}

৳ {{ item.product.cover_product_attribute.product_final_price }} ৳ {{ item.product.cover_product_attribute.regular_price }} {{ item.product.cover_product_attribute.final_discount.total_discount_percentage }} % OFF

{% else %}

৳ {{ item.product.cover_product_attribute.regular_price }}

{% endif %}
Color: {{item.product_attribute.color}} Size: {{item.product_attribute.size}}
{% comment %}
- +
{% endcomment %}
{% endfor %}

Cart Amount

৳ {{ cart_total }}

{% if cart_list %} Proceed to Checkout {% else %} Proceed to Checkout {% endif %}
{% else %}

There is no item in cart

{% endif %}
{% comment %}

Default Shipping Address

My Personal home

880156763524

6B, Dhaka, Bangladesh, A-23S76

{% endcomment %}

Recently Viewed

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

0

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

{% comment %} {% endcomment %} Stock: {{item.product.product_stock_status.stock_qty}}
{% endfor %} {% else %}
Products not found
{% endif %}
{% endblock %} {% block JS %} {% endblock %}