{% 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 %} {% endwith %} {% endfor %}
{% trans 'Product' %} {% trans 'Quantity' %} {% trans 'Action' %}
{% with image=form.instance.product.primary_image %} {% thumbnail image.original "100x100" upscale=False as thumb %} {{ form.instance.product.get_title }} {% endthumbnail %} {% endwith %} {{ line.get_title }} {% if not line.product %} ({% 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 %}