{% import "@SyliusShop/Common/Macro/money.html.twig" as money %} {% set state = order.shippingState %} {% if state != 'cart' %} {% include "@SyliusShop/Common/Order/Label/ShipmentState/orderShipmentState.html.twig" %} {% endif %} {% for shipment in order.shipments %} {% set state = shipment.state %}
{{ shipment.method }}

{{ money.format(shipment.method.configuration|first.amount, order.payments|first.currencyCode) }}

{% if state != 'cart' %}

{% include "@SyliusShop/Common/Order/Label/ShipmentState/singleShipmentState.html.twig" with { 'state': state } %}

{% endif %}
{% endfor %}