{% extends "oscar/customer/wishlists/wishlists_detail.html" %} {% load image_tags %} {% load i18n %} {% load widget_tweaks product_tags %} {% block header %} {{block.super}} {% trans 'Edit' %} {% trans 'Wishlist' %} {% endblock %} {% block tabcontent %} {% if form.total_form_count %}
{% for subform in form %} {% with line=subform.instance product=subform.instance.product %} {% if product %}
{% include "oscar/customer/wishlists/wishlists_product.html" with product=product line=line %}
{% endif %} {% endwith %} {% endfor %}
{% else %} {% trans "Your wish list is empty." %} {% endif %} {% endblock tabcontent %}