{extends Layout} {block content}

{% Objednávka č.} {$order['id']}

{!$message}

Zákazník

{% Meno a priezvisko}   {$customer['full_name']}
{% Ulica, číslo domu/vchodu}   {$customer['street']}
{% Mesto}   {$customer['city']}
{% PSČ}   {$customer['postal_code']}
E-mail   {$customer['email']}
{% Telefónne číslo}   {$customer['phone']}
{if empty($order['note']) === FALSE}

{% Poznámka}

{$order['note']}
{/if}

{% Produkty}

{loop $cart->products as $product} {/loop} {if $deliveryPrice > 0} {/if} {if $discount > 0} {/if}
{% Kód} {% Názov} {% Množstvo} {% Cena/kus} {% Cena}
{$product['product_code']} {$product['name']}
{$product|tags}
{$product['amount']} {$product['final_price']|price} {$product['final_price'] * $product['amount']|price}
{% Balné a poštovné} {$deliveryPrice|price}
{% Zľava} {$discount|price}
{% Cena spolu} {$cart->finalPrice + $deliveryPrice - $discount|price}
{/block}