82 lines
4.6 KiB
HTML
82 lines
4.6 KiB
HTML
{ifloop rel="cartloop"}
|
|
<li class="dropdown pull-right cart-not-empty cart-container">
|
|
<a href="{url path="/cart"}" rel="nofollow" class="cart">
|
|
{intl l="Cart" d="hookcart.fo.default"} <span class="badge">{cart attr="count_item"}</span>
|
|
</a>
|
|
<div class="dropdown-menu cart-content">
|
|
<form id="form-cart-mini" action="{url path="/order/delivery"}" method="post">
|
|
<table class="table table-cart-mini">
|
|
<colgroup>
|
|
<col width="70">
|
|
<col>
|
|
<col width="100">
|
|
</colgroup>
|
|
<tbody>
|
|
{assign "total_price" 0}
|
|
{loop type="cart" name="cartloop"}
|
|
<tr>
|
|
<td class="image">
|
|
{ifloop rel="pse-first-image"}
|
|
{loop type="product-sale-elements-image" name="pse-first-image" product_sale_elements_id=$PRODUCT_SALE_ELEMENTS_ID limit="1"}
|
|
{loop type="image" name="product-image" id=$PRODUCT_IMAGE_ID product=$PRODUCT_ID limit="1" width="236" height="120" resize_mode="crop"}
|
|
{assign var="product_image_url" value=$IMAGE_URL}
|
|
<img src="{$IMAGE_URL nofilter}" alt="{$TITLE}">
|
|
{/loop}
|
|
{/loop}
|
|
{/ifloop}
|
|
{elseloop rel="pse-first-image"}
|
|
{loop type="image" name="product-image" product=$PRODUCT_ID limit="1" width="236" height="120" resize_mode="crop"}
|
|
<img src="{$IMAGE_URL nofilter}" alt="{$TITLE}">
|
|
{/loop}
|
|
{/elseloop}
|
|
</td>
|
|
<td class="product">
|
|
<h3 class="name" style="margin:0">
|
|
{$TITLE}
|
|
</h3>
|
|
<a href="{token_url path="/cart/delete/$ITEM_ID"}" class="btn btn-remove" data-tip="tooltip" data-title="Delete" data-original-title=""><i class="fa fa-trash"></i> <span>{intl l="Remove" d="hookcart.fo.default"}</span></a>
|
|
</td>
|
|
<td class="unitprice text-center">
|
|
{if $IS_PROMO == 1}
|
|
{assign "real_price" $PROMO_TAXED_PRICE}
|
|
{assign "real_total_price" $TOTAL_PROMO_TAXED_PRICE}
|
|
{else}
|
|
{assign "real_price" $TAXED_PRICE}
|
|
{assign "real_total_price" $TOTAL_TAXED_PRICE}
|
|
{/if}
|
|
<span class="qty">{$QUANTITY}</span> X <span class="price" style="font-size:1em;">{format_money number=$real_price}</span>
|
|
{assign "total_price" $total_price + $real_total_price}
|
|
</td>
|
|
</tr>
|
|
{/loop}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="2" class="empty">
|
|
<a href="{url path="/cart"}" role="button" class="btn btn-primary btn-sm""><i class="fa fa-eye"></i> {intl l="View Cart" d="hookcart.fo.default"}</a>
|
|
<a href="{url path="/order/delivery"}" role="button" class="btn btn-primary btn-sm"><i class="fa fa-chevron-right"></i> {intl l="Checkout" d="hookcart.fo.default"}</a>
|
|
{*<button type="submit" name="checkout" class="btn btn-primary btn-sm">{intl l="Checkout" d="hookcart.fo.default"}</button>*}
|
|
</td>
|
|
<td class="total">
|
|
<div class="total-price">
|
|
<span class="price">{format_money number=$total_price}</span>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</li>
|
|
{/ifloop}
|
|
{elseloop rel="cartloop"}
|
|
<li class="dropdown pull-right cart-container">
|
|
<a href="{url path="/cart"}" rel="nofollow" class="cart">
|
|
{intl l="Cart" d="hookcart.fo.default"} <span class="badge">0</span>
|
|
</a>
|
|
<div class="dropdown-menu cart-content">
|
|
<p>{intl l="You have no items in your shopping cart." d="hookcart.fo.default"}</p>
|
|
</div>
|
|
</li>
|
|
{/elseloop}
|