{% extends "customer/baseaccountpage.html" %} {% load thumbnail %} {% load i18n %} {% load url from future %} {% block breadcrumbs %} {% endblock %} {% block tabcontent %} {% if form.total_form_count %}
{{ form.management_form }} {% csrf_token %} {% for form in form %} {% with line=form.instance product=form.instance.product %} {% endwith %} {% endfor %}
{% trans 'Product' %} {% trans 'Quantity' %} {% trans 'Action' %}
{% if product %} {% with image=product.primary_image %} {% thumbnail image.original "100x100" upscale=False as thumb %} {{ product.get_title }} {% endthumbnail %} {% endwith %} {% endif %} {% if product %} {{ line.get_title }} {% else %} {{ line.get_title }} ({% trans 'Not available anymore' %}) {% endif %} {% for field in form %} {{ field }} {% for error in field.errors %}
  • {{ error }}
{% endfor %} {% endfor %}
{% else %} {% trans "Your wish list is empty." %} {% endif %} {% endblock tabcontent %}