first commit
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<div id="st_discount-coupon-code">
|
||||
<h3 class="st_title">{__ text="Kod rabatowy"}</h3>
|
||||
{if $coupon_code}
|
||||
<div id="st_discount-coupon-info">
|
||||
{__ text="Udzielony rabat"}: <b>{$coupon_code.discount}%</b>
|
||||
</div>
|
||||
{else}
|
||||
<form action="{$form.action}" method="post">
|
||||
{if $form.error}
|
||||
<div id="st_discount-coupon-error">
|
||||
{__ text=$form.error}
|
||||
</div>
|
||||
{/if}
|
||||
<div id="st_discount-coupon-form">
|
||||
<div class="label">
|
||||
<label for="discount_coupon_code">{__ text="Wprowadź kod"}:</label>
|
||||
</div>
|
||||
<input id="discount_coupon_code" name="discount[coupon_code]" type="text" value="{$form.code}" />
|
||||
<input type="hidden" name="discount[return_url]" value="{$form.return_url}" />
|
||||
|
||||
<div class="st_button st_align-right" id="st_basket-confirm_code">
|
||||
<div class="st_button-left"><input type="submit" value="{__ text='Aktywuj'}"></div>
|
||||
</div>
|
||||
<br class="st_clear_all" />
|
||||
|
||||
</div>
|
||||
</form>
|
||||
{/if}
|
||||
</div>
|
||||
@@ -0,0 +1,35 @@
|
||||
<div id="st_application-user-user" class="st_application">
|
||||
|
||||
<h1 class="st_title">
|
||||
<div id="st_user-tag">{$user_panel_icon}</div>
|
||||
{$user_panel_path}
|
||||
</h1>
|
||||
{$user_panel_menu}
|
||||
<div class="st_content" style="padding: 10px 200px">
|
||||
<h5 class="st_title">{__ text="Lista przypisanych rabatów"}</h5><br />
|
||||
<table class="st_tabular-list" cellspacing="0">
|
||||
<colgroup>
|
||||
<col>
|
||||
<col width="120">
|
||||
<col width="120">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="white-space: nowrap;"><span>{__ text="Nazwa"}</span></th>
|
||||
<th><span>{__ text="Wartość"}</span></th>
|
||||
<th><span>{__ text="Produkty"}</span></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$discounts item=discount}
|
||||
<tr>
|
||||
<td>{$discount.name}</td>
|
||||
<td>{$discount.value}%</td>
|
||||
<td>{$discount.link_to}</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<br class="st_clear_all" />
|
||||
</div>
|
||||
@@ -0,0 +1,17 @@
|
||||
<div id="st_component-st_product-product_list">
|
||||
|
||||
<div id="st_component-st_product-product_list_long_head"></div>
|
||||
|
||||
<div class="st_application">
|
||||
<h1 id="st_search-st_title" class="st_title">
|
||||
{__ text="Produkty w grupie rabatowej"}: {$discount_name}
|
||||
</h1>
|
||||
</div>
|
||||
|
||||
{$pager}
|
||||
{$product}
|
||||
{$pager}
|
||||
|
||||
<p align="center">{$no_results}</p>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user