bebeboutik/themes/site_mobile/discount.tpl
Srv Bebeboutik 340bc7c146 push site
2016-01-04 12:48:08 +01:00

92 lines
3.4 KiB
Smarty
Executable File

{*
* 2007-2011 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2011 PrestaShop SA
* @version Release: $Revision: 8088 $
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*}
{capture name=path}<a href="{$link->getPageLink('my-account.php', true)}">{l s='My account'}</a><span class="navigation-pipe">{$navigationPipe}</span>{l s='My Vouchers'}{/capture}
{include file="$tpl_dir./breadcrumb.tpl"}
<h1 class="title"><span>{l s='My Vouchers'}</span></h1>
{if isset($discount) && count($discount) && $nbDiscounts}
<table class="discount std">
<thead>
<tr>
<th class="discount_code first_item" align="left">{l s='Code'}</th>
{*<th class="discount_description item">{l s='Description'}</th>*}
{*<th class="discount_quantity item">{l s='Quantity'}</th>*}
<th class="discount_value item">{l s='Value'}*</th>
{*<th class="discount_minimum item">{l s='Minimum'}</th>*}
{*<th class="discount_cumulative item">{l s='Cumulative'}</th>*}
<th class="discount_expiration_date last_item" align="right">{l s='Expiration'}</th>
</tr>
</thead>
<tbody>
{foreach from=$discount item=discountDetail name=myLoop}
<tr class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if} {if $smarty.foreach.myLoop.index % 2}alternate_item{/if}">
<td class="discount_code">{$discountDetail.name}</td>
{*<td class="discount_description">{$discountDetail.description}</td>*}
{*<td class="discount_quantity">{$discountDetail.quantity_for_user}</td>*}
<td class="discount_value">
{if $discountDetail.id_discount_type == 1}
{$discountDetail.value|escape:'htmlall':'UTF-8'}%
{elseif $discountDetail.id_discount_type == 2}
{convertPrice price=$discountDetail.value}
{else}
{l s='Free shipping'}
{/if}
</td>
{*<td class="discount_minimum">
{if $discountDetail.minimal == 0}
{l s='none'}
{else}
{convertPrice price=$discountDetail.minimal}
{/if}
</td>*}
{*<td class="discount_cumulative">
{if $discountDetail.cumulable == 1}
<img src="{$img_dir}icon/yes.gif" alt="{l s='Yes'}" class="icon" />
{else}
<img src="{$img_dir}icon/no.gif" alt="{l s='No'}" class="icon" />
{/if}
</td>*}
<td class="discount_expiration_date">{dateFormat date=$discountDetail.date_to}</td>
</tr>
{/foreach}
</tbody>
</table>
<p>
* {l s='Tax included'}
</p>
{else}
<p class="warning">{l s='You do not possess any vouchers.'}</p>
{/if}
<p class="footer_links">
<a class="back_account" href="{$link->getPageLink('my-account.php', true)}" class="button">
<i class="icon-user"></i><span>{l s='Back to my account'}</span>
</a>
</p>