{% load i18n thumbnail %} {% for item in object.items.all %} {% thumbnail item.product.logo "40" crop="top" as img %} {% empty %} ---- {% endthumbnail %} {{ item.product.name }} {% if item.product.code %}({{ item.product.code }}){% endif %}
{{ item.qty }} x {{ item.product.printable_price }}
{% if is_clothes_app_enabled %} {% for size in item.clothe_sizes.all %} {% for label, value in size.get_values %} {% endfor %}
{{ label }} {{ value }}
{% endfor %} {% endif %}

{% endfor %} {% trans 'Total' %}: {{ object.printable_total }}