80 lines
4.5 KiB
Smarty
Executable File
80 lines
4.5 KiB
Smarty
Executable File
{*
|
|
* 2007-2013 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-2013 PrestaShop SA
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
|
|
{if isset($products)}
|
|
<!-- Products list -->
|
|
<ul id="product_list" class="clear">
|
|
{foreach from=$products item=product name=products}
|
|
<li class="ajax_block_product {if $smarty.foreach.products.first}first_item{elseif $smarty.foreach.products.last}last_item{/if} {if $smarty.foreach.products.index % 2}alternate_item{else}item{/if} clearfix">
|
|
<a href="{$product.link|escape:'htmlall':'UTF-8'}" class="product_img_link" title="{$product.name|escape:'htmlall':'UTF-8'}">
|
|
<img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'listing')}" alt="{$product.legend|escape:'htmlall':'UTF-8'}" />
|
|
{if isset($product.new) && $product.new == 1}<span class="new">{l s='New'}</span>{/if}
|
|
</a>
|
|
<div class="center_block">
|
|
<h3><a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.name|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8'|truncate:35:'...'}</a></h3>
|
|
<p class="product_desc"><a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'}" >{$product.description_short|strip_tags:'UTF-8'|truncate:120:'...'}</a></p>
|
|
{if $product.reference}<p class="product_reference">{l s='Référence : '}{$product.reference|strip_tags:'UTF-8'}</p>{/if}
|
|
<p class="product_detail"><a href="{$product.link|escape:'htmlall':'UTF-8'}">{l s='Plus de détails'}</a></p>
|
|
</div>
|
|
{if $logged}
|
|
<div class="right_block">
|
|
{*if isset($product.on_sale) && $product.on_sale && isset($product.show_price) && $product.show_price && !$PS_CATALOG_MODE}
|
|
<span class="on_sale">{l s='On sale!'}</span>
|
|
{elseif isset($product.reduction) && $product.reduction && isset($product.show_price) && $product.show_price && !$PS_CATALOG_MODE}
|
|
<span class="discount">{l s='Reduced price!'}</span>
|
|
{/if*}
|
|
{if (!$PS_CATALOG_MODE AND ((isset($product.show_price) && $product.show_price) || (isset($product.available_for_order) && $product.available_for_order)))}
|
|
<div class="content_price">
|
|
{if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)}
|
|
<span class="price">
|
|
{*if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if*}
|
|
{convertPrice price=$product.price_tax_exc}
|
|
</span> {l s='HT'}
|
|
{/if}
|
|
</div>
|
|
<div class="qty">
|
|
<span>{l s='Quantité : '}</span>
|
|
<input type="text" value="1" class="qty_input" />
|
|
</div>
|
|
{/if}
|
|
{if ($product.id_product_attribute == 0 || (isset($add_prod_display) && ($add_prod_display == 1))) && $product.available_for_order && !isset($restricted_country_mode) && $product.minimal_quantity <= 1 && $product.customizable != 2 && !$PS_CATALOG_MODE}
|
|
{if ($product.allow_oosp || $product.quantity > 0)}
|
|
{if isset($static_token)}
|
|
<a class="ajax_add_to_cart_button add_to_cart" rel="ajax_id_product_{$product.id_product|intval}" href="{$link->getPageLink('cart',false, NULL, "add=1&id_product={$product.id_product|intval}&token={$static_token}", false)}" title="{l s='Add to cart'}"><span></span>{l s='Add to cart'}</a>
|
|
{else}
|
|
<a class="ajax_add_to_cart_button add_to_cart" rel="ajax_id_product_{$product.id_product|intval}" href="{$link->getPageLink('cart',false, NULL, "add=1&id_product={$product.id_product|intval}", false)}" title="{l s='Add to cart'}"><span></span>{l s='Add to cart'}</a>
|
|
{/if}
|
|
{else}
|
|
{/if}
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
<div class="clear"></div>
|
|
<!-- /Products list -->
|
|
{/if}
|