{% 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 }}