{$msg.cart.your_cart}
{if $order->itemsCount > 0}
{** LIST CART PRODUCTS **} {foreach from=$order_items item="order_item"} {/foreach}
{$order_item.title|htmlspecialchars} X {$order_item.quantity}
{foreach from=$order_item.options_parsed item=op}{$op.name}: {$op.value}
{/foreach}
{$order_item.product_price*$order_item.quantity|price}
{$msg.cart.subtotal_amount}: {if $DisplayPricesWithTax == "YES"}{$order->subtotalAmountWithTax|price}{else}{$order->subtotalAmount|price}{/if}
{** END LIST CART PRODUCTS **}
{/if}