{% blocktrans %}
Details of shipping cost calculated by EMS
{% endblocktrans %}
{% blocktrans %}
From {{ origin }} to {{ destination }}.
Brutto: {{ total_weight }} kg.
Items:{% endblocktrans %}
{% for p in packs %}
{% blocktrans with name=p.container.name weight=p.weight vol=p.container.volume %}
{{ name }} ( {{ weight }} kg, {{ vol }}m3)
{% endblocktrans %}
{% endfor %}
{% if time_min and time_max %}
{% blocktrans with min=time_min max=time_max %}
Estimated delivery time: from {{ min }} to {{ max }} days.
{% endblocktrans %}
{% endif %}