{% load i18n %} {{ subject }} {% block style %} {% endblock %}
{% block content %} {% block header %}

{{ subject }}

{% endblock %} {% block profile %}
{{ profile.contact.fullname }}
{% endblock %} {% block delivery %}
{% trans "Delivery point" %} : {{ action.sale.delivery_point.name }} {{ action.planned_date|date:'l j F H:i' }}
{% endblock %} {% block notes %} {% if action.subject %}
{% trans "Notes" %} : {{ action.subject }}
{{ action.detail|linebreaksbr }}
{% endif %} {% endblock %} {% block cart %}
{% for item in action.sale.saleitem_set.all %} {% endfor %}
{% trans "Store_item" %} {% trans "Brand" %} {% trans "Reference" %} {% trans "Price" %} {% trans "Quantity" %} {% trans "Total" %}
{{ item.text }} {{ item.item.brand.name }} {{ item.item.reference }} {{ item.vat_incl_price|floatformat:2 }} € {{ item.quantity|floatformat:2 }} {{ item.vat_incl_total_price|floatformat:2 }} €
{% trans "Total" %} {{ action.amount|floatformat:2 }} €
{% endblock %} {% endblock %}