{% extends 'email.html' %} {% load i18n %} {% block content %}

{{ title }}

{% trans 'Product' %} {% trans 'Price' %}
{{ product.name }} ({{ product.code }})
{% for size in sizes %} {% for label, value in size.get_values %} {{ label }}: {{ value }}
{% endfor %}
{% endfor %}
{{ product.printable_price }}
{% endblock %}