From 0165774fc7d4a615249065ae14d19d287ab69cdd Mon Sep 17 00:00:00 2001 From: Repellent Date: Mon, 17 Oct 2016 18:24:26 +0300 Subject: [PATCH] Upload new file --- basket/templates/basket_show.tpl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 basket/templates/basket_show.tpl diff --git a/basket/templates/basket_show.tpl b/basket/templates/basket_show.tpl new file mode 100644 index 0000000..bb046d3 --- /dev/null +++ b/basket/templates/basket_show.tpl @@ -0,0 +1,15 @@ +{oBasket->getBasket assign='basket'} + +
+

{#BASKET_TITLE#}

+ {if $basket.products} +
+
    + {foreach from=$basket.products item=product}
  • {$product->name} ({$product->quantity}{#BASKET_UNIT#}) - {$product->amount|string_format:"%.2f"}{#BASKET_CURRENCY#}
  • + {/foreach} +
+
+

{#BASKET_ORDER_CHECKOUT#} {#BASKET_ORDER_TOTAL#}: {$basket.total|string_format:"%.2f"}{#BASKET_CURRENCY#} {$basket.quantity}

+
+ {/if} +
\ No newline at end of file