{% extends "oscar/customer/wishlists/wishlists_detail.html" %} {% load i18n thumbnail widget_tweaks purchase_info_tags basket_tags %} {% block extrastyles %} {{ block.super }} {% endblock %} {% block tabcontent %} {% if form.total_form_count %}
{% for subform in form %} {% with product=subform.instance.product %} {% if product and not product.is_parent and not product.has_options and product.min_quantity <= 1 %} {% purchase_info_for_product request product as session %} {% if session.availability.is_available_to_buy %} {% basket_form request product 'single' as basket_form %} {% endif %} {% endif %} {% endwith %} {% endfor %} {% else %} {% trans "Your wish list is empty." %} {% endif %} {% endblock tabcontent %}