Files
AtomicOld/design/atomic/html/cart_informer.tpl
2026-02-15 18:29:53 +03:00

32 lines
1.1 KiB
Smarty
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{* Информера корзины (отдаётся аяксом) *}
{if $cart->total_products>0}
<table id="top-cart-informer" class="notempty">
<tbody>
<tr>
<td rowspan="2" class="icon"><span class="glyphicon glyphicon-shopping-cart"></span></td>
<td class="bsk_item">товаров: </td>
<td class="bsk_value"><span id="b_count3">{$cart->total_products} {$cart->total_products|plural:'шт':'шт':'шт'}</span></td>
</tr>
<tr>
<td class="bsk_item">на сумму:&nbsp;</td>
<td class="bsk_value"><span id="b_sum3">{$cart->total_price|convert} {$currency->sign|escape}</span></td>
</tr>
</tbody>
</table>
{else}
<table id="top-cart-informer" class="empty">
<tbody>
<tr>
<td rowspan="2" class="icon"><span class="glyphicon glyphicon-shopping-cart"></span></td>
<td class="bsk_item">товаров: </td>
<td class="bsk_value"><span id="b_count3">0 шт.</span></td>
</tr>
<tr>
<td class="bsk_item">на сумму:&nbsp;</td>
<td class="bsk_value"><span id="b_sum3">0 руб.</span></td>
</tr>
</tbody>
</table>
{/if}