Inital commit

This commit is contained in:
2020-11-19 15:36:28 +01:00
parent 71f32f83d3
commit 66ce4ee218
18077 changed files with 2166122 additions and 35184 deletions

View File

@@ -80,21 +80,21 @@
{/loop}
</dl>
</div>
<a href="{url path="/cart/delete/$ITEM_ID"}" class="btn btn-remove"><i class="icon-trash"></i> {intl l="Remove"}</a>
<a href="{token_url path="/cart/delete/$ITEM_ID"}" class="btn btn-remove"><i class="icon-trash"></i> {intl l="Remove"}</a>
</td>
<td class="unitprice">
{if $IS_PROMO == 1}
{assign "real_price" $PROMO_TAXED_PRICE}
<div class="special-price"><span class="price">{$PROMO_TAXED_PRICE} {currency attr="symbol"}</span></div>
<small class="old-price">{intl l="instead of"} <span class="price">{$TAXED_PRICE} {currency attr="symbol"}</span></small>
<div class="special-price"><span class="price">{format_money number=$PROMO_TAXED_PRICE symbol={currency attr="symbol"}}</span></div>
<small class="old-price">{intl l="instead of"} <span class="price">{format_money number=$TAXED_PRICE symbol={currency attr="symbol"}}</span></small>
{else}
{assign "real_price" $TAXED_PRICE}
<div class="special-price"><span class="price">{$TAXED_PRICE} {currency attr="symbol"}</span></div>
<div class="special-price"><span class="price">{format_money number=$TAXED_PRICE symbol={currency attr="symbol"}}</span></div>
{/if}
</td>
<td class="qty">
<div class="form-group group-qty">
<form action="{url path="/cart/update"}" class="form-inline" method="post">
<form action="{token_url path="/cart/update"}" class="form-inline" method="post">
<input type="hidden" name="cart_item" value="{$ITEM_ID}">
<div class="form-group">
{if $STOCK <= 500}
@@ -112,7 +112,7 @@
</div>
</td>
<td class="subprice">
<span class="price">{$real_price * $QUANTITY} {currency attr="symbol"}</span>
<span class="price">{format_money number={$real_price * $QUANTITY} symbol={currency attr="symbol"}}</span>
</td>
</tr>
{/loop}
@@ -151,9 +151,9 @@
{/if}
</form>
</td>
<td class="unitprice">{$postage} {currency attr="symbol"}</td>
<td class="unitprice">{format_money number=$postage symbol={currency attr="symbol"}}</td>
<td class="qty">-</td>
<td class="subprice">{$postage} {currency attr="symbol"}</td>
<td class="subprice">{format_money number=$postage symbol={currency attr="symbol"}}</td>
</tr>
{/postage}
</tbody>
@@ -164,7 +164,7 @@
<td class="total">
<div class="total-price">
{assign var="totalAmount" value={cart attr='total_taxed_price_without_discount'} + $postageAmount }
<span class="price">{$totalAmount} {currency attr="symbol"}</span>
<span class="price">{format_money number=$totalAmount symbol={currency attr="symbol"}}</span>
</div>
</td>
</tr>