first commit
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
<div id="st_application-st_basket-index" class="st_application">
|
||||
<h1 class="st_title">{__ text="Twój koszyk"}</h1>
|
||||
<div class="st_content_basket">
|
||||
<div class="st_button st_align-left" id="st_basket-back_button">
|
||||
<div class="st_button-left">{$button_back}</div>
|
||||
</div>
|
||||
<br class="st_clear_all" />
|
||||
|
||||
{if $if_warning || $if_notice}
|
||||
<div id="st_message-warning"><h2>{$show_warning}</h2></div>
|
||||
{/if}
|
||||
|
||||
{if $products}
|
||||
<div id="st_basket-product_list">{$product_list}</div>
|
||||
|
||||
<form action="#" id="st_basket-delivery-form">
|
||||
<div id="st_basket-delivery">{$delivery}</div>
|
||||
{if $has_deliveries}
|
||||
<div id="st_basket-payment">{$payment}</div>
|
||||
{/if}
|
||||
<div id="st_basket-summary">
|
||||
{$total}
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<div id="st_basket-discount-coupon-code">
|
||||
{$discount_coupon_code}
|
||||
</div>
|
||||
{$gift_card}
|
||||
<br class="st_clear_all"/>
|
||||
<div id="st-trusted_shops">{$trusted_shops}</div>
|
||||
{if $show_products == 1}
|
||||
<div>{$products_promote}</div>
|
||||
{/if}
|
||||
<div id="st_basket-user">{$user_form}</div>
|
||||
{else}
|
||||
{if $show_products == 1}
|
||||
<div id="st-basket-product_group">{$product_basket}</div>
|
||||
{/if}
|
||||
{/if}
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,4 @@
|
||||
{$attributes}
|
||||
<div id="st_button-basket-{$product_id}" class="st_button-basket-disabled">
|
||||
<span>{__ text="Dodaj do koszyka"}</span>
|
||||
</div>
|
||||
@@ -0,0 +1,3 @@
|
||||
<div id="st_button-basket-{$product_id}" class="st_button-basket-enabled">
|
||||
{$basket_add_enable}
|
||||
</div>
|
||||
@@ -0,0 +1,15 @@
|
||||
<div id="st_component-st_basket-add_enable">
|
||||
<form action="{$form_action}" method="post" id="st_basket-add-to-basket-form">
|
||||
{$attributes}
|
||||
<div id="st_basket-add-button">
|
||||
<div class="st_button-left">
|
||||
<div class="st_button-right">
|
||||
<div id="st_basket-add-submit-container">{$submit_button}</div>
|
||||
<div id="st_basket-add-quantity_container">{$quantity_field}</div>
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br class="st_clear_all" />
|
||||
</form>
|
||||
</div>
|
||||
@@ -0,0 +1,3 @@
|
||||
<span id="st_icon-basket-{$product_id}" class="st_icon-basket-disabled">
|
||||
{$basket_add_simple_disabled}
|
||||
</span>
|
||||
@@ -0,0 +1,3 @@
|
||||
<span id="st_icon-basket-{$product_id}" class="st_icon-basket-enabled">
|
||||
{$basket_add_simple_enabled}
|
||||
</span>
|
||||
@@ -0,0 +1,6 @@
|
||||
<div class="st_button-basket-enabled" id="st_component-st_basket-add_info_enable">
|
||||
{$start_form}
|
||||
{$basket_info_enabled2}
|
||||
{__ text="Ilość"}: {$basket_info_enabled} {__ text="szt"}.
|
||||
</form>
|
||||
</div>
|
||||
@@ -0,0 +1,19 @@
|
||||
<div id="st_component-st_basket-basket_preview">
|
||||
<div id="st_component-basket-content" class="st_content">
|
||||
<ul>
|
||||
<li id="st_icon_basket" {$get_tooltip}>
|
||||
{$icon_basket}
|
||||
</li>
|
||||
<li id="st_sum">
|
||||
{$num}
|
||||
</li>
|
||||
<li {$get_tooltip}>
|
||||
{$amount_product}
|
||||
</li>
|
||||
<li>
|
||||
{$currency}
|
||||
</li>
|
||||
</ul>
|
||||
{$basket_add}
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,63 @@
|
||||
{$form_start}
|
||||
<table class="st_tabular-list" cellspacing="0">
|
||||
<colgroup>
|
||||
<col width="80" />
|
||||
<col />
|
||||
<col width="80" />
|
||||
<col width="50" />
|
||||
<col width="80" />
|
||||
<col width="80" />
|
||||
<col width="80" />
|
||||
<col width="60" />
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="st_basket-product-photo"><span>{__ text="zdjęcie"}</span></th>
|
||||
<th class="st_basket-product-name"><span>{__ text="nazwa"}</span></th>
|
||||
<th class="st_basket-product-netto"><span>{__ text="cena netto"}</span></th>
|
||||
<th class="st_basket-product-tax"><span>{__ text="vat"}</span></th>
|
||||
<th class="st_basket-product-brutto"><span>{__ text="cena brutto"}</span></th>
|
||||
<th class="st_basket-product-num"><span>{__ text="ilość"}</span></th>
|
||||
<th class="st_basket-product-sum"><span>{__ text="suma}</span></th>
|
||||
<th class="st_basket-product-remove">{__ text="usuń"}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<div id="st_basket_product_value"></div>
|
||||
{foreach key=row item=product from=$results}
|
||||
{if $product.if_form_error}
|
||||
<tr>
|
||||
<td colspan="8"><span class="st_error">{$product.error_show}</span></td>
|
||||
</tr>
|
||||
{/if}
|
||||
<tr id="tr_product_id_{$product.id}" >
|
||||
<td class="st_basket-product-photo">{$product.photo}</td>
|
||||
<td class="st_basket-product-name">{$product.name}</td>
|
||||
<td class="st_basket-product-netto">{$product.price_netto}</td>
|
||||
<td class="st_basket-product-tax">{$product.tax} %</td>
|
||||
<td class="st_basket-product-brutto">{$product.price_brutto}</td>
|
||||
<td class="st_basket-product-num" onmouseover="{$product.num_onmouseover}" onmouseout="{$product.num_onmouseout}">
|
||||
<ul>
|
||||
<li id="st_basket-product-num-button-minus-{$product.id}" style="visibility: hidden">{$product.minus}</li>
|
||||
<li class="st_basket-product-num-value" id="st_basket_product_value{$product.id}">{$product.num}</li>
|
||||
<li id="st_basket-product-num-button-plus-{$product.id}" style="visibility: hidden">{$product.plus}</li>
|
||||
</ul>
|
||||
</td>
|
||||
<td class="st_basket-product-sum">{$product.total_amount}</td>
|
||||
<td class="st_basket-product-remove">{$product.delete}</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
<tr>
|
||||
<td colspan="8" class="st_basket-all-empty" style="border-bottom: none;">
|
||||
|
||||
<div class="st_button st_align-right" id="st_basket-update_button">
|
||||
<div class="st_button-left">{$button_update}</div>
|
||||
</div>
|
||||
<div class="st_button st_align-right" id="st_basket-clear_button">
|
||||
<div class="st_button-left">{$button_clear}</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
@@ -0,0 +1,19 @@
|
||||
<ul id="st_component-st_basket-list">
|
||||
<li class="st_basket-list-last">{$basket_icon}</li>
|
||||
<li>{$amount_icon}
|
||||
{if isset($basket_array)}
|
||||
<div class="tooltip roundies">
|
||||
<table style="border:none;">
|
||||
{foreach from=$basket_array item=basket_item}
|
||||
<tr>
|
||||
<td style="border:none;">{$basket_item.image}</td>
|
||||
<td style="border:none;">{$basket_item.name}</td>
|
||||
<td style="border:none;">{$basket_item.quantity} x {$basket_item.price}</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
<tr><td colspan="3" style="border:none; text-align: right">{__ text="razem"}: <b>{$basket_amount}</b></td></tr>
|
||||
</table>
|
||||
</div>
|
||||
{/if}
|
||||
</li>
|
||||
</ul>
|
||||
@@ -0,0 +1,8 @@
|
||||
<div id="st_component-st_basket-sumary_info">
|
||||
|
||||
{if $value}
|
||||
{$value}
|
||||
{else}
|
||||
{__ text="Razem do zapłaty"}: <strong>{$total_amount}</strong>
|
||||
{/if}
|
||||
</div>
|
||||
Reference in New Issue
Block a user