This commit is contained in:
Roman Pyrih
2024-11-26 10:35:23 +01:00
parent 1a56dbea66
commit 1994d995d8
7 changed files with 107 additions and 25 deletions

View File

@@ -36,15 +36,18 @@
<span class="product-name">
<a href="{$product.url}" target="_blank" rel="noopener noreferrer nofollow">{$product.name}</a>
</span>
<span class="product-quantity">x{$product.quantity}</span>
<span class="product-price float-xs-right">{$product.price}</span>
{hook h='displayProductPriceBlock' product=$product type="unit_price"}
{foreach from=$product.attributes key="attribute" item="value"}
<div class="product-line-info product-line-info-secondary text-muted">
<span class="label">{$attribute}:</span>
<span class="value">{$value}</span>
</div>
{/foreach}
<br/>
<div class="product-specification">
{* <span class="product-price float-xs-right">{$product.price}</span>
{hook h='displayProductPriceBlock' product=$product type="unit_price"} *}
{foreach from=$product.attributes key="attribute" item="value"}
<div class="product-line-info product-line-info-secondary text-muted">
<span class="label">{$attribute}:</span>
<span class="value">{$value}</span>
</div>
{/foreach}
<span class="product-quantity">Ilość: {$product.quantity}</span>
</div>
{* <br/> *}
</div>
{/block}