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

My Wishlist ❤️

{% if items %}
{% for item in items %}
{{ item.product.name }}
{{ item.product.name }}
{% with discount=item.product.get_active_discount %} {% if discount %}
${{ item.product.price|floatformat:2 }}
${{ item.product.get_discounted_price|floatformat:2 }} Save ${{ item.product.get_discount_amount|floatformat:2 }} ({{ discount.discount_percentage }}% off)
{% else %}

${{ item.product.price|floatformat:2 }}

{% endif %} {% endwith %}

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

{% endfor %}
{% else %}

Your wishlist is empty

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