{% extends 'base.html' %} {% block content %}

My Wishlist ❤️

{% if items %}
{% for item in items %}
{{ item.product.name }}
{{ item.product.name }}

₦{{ item.product.price }}

{{ item.product.description|truncatechars:100 }}

{% endfor %}
{% else %}

Your wishlist is empty

Browse Products
{% endif %}
{% endblock %}