{% extends "user_dashboard_base.html" %} {% load static %} {% block title %}Wishlist{% endblock %} {% block content %}
Filter
$ TO $


Wishlist ({{wish_list|length}})

{% for item in wish_list %} {% with cover=item.product.product_attribute.first %}
{% if cover.discount_price %} {{ cover.discount_percentage }}% OFF {% endif %}
{{ item.product.product_name }} {% if cover.discount_price %}
৳ {{ cover.discount_price }} ৳ {{ cover.regular_price }}
{% else %}
৳ {{ cover.regular_price }}
{% endif %}

Stock: {% if cover.stock > 0 and cover.stock > item.product.moq %} In stock {% else %} Out of stock {% endif %}

{% endwith %} {% endfor %}
{% endblock %} {% block JS %} {% endblock %}