Merge branch 'bootstrap' of https://github.com/PrestaShop/PrestaShop into bootstrap
@@ -88,26 +88,34 @@
|
||||
if (data.result) {
|
||||
if (typeof data.result.{$name} !== 'undefined') {
|
||||
for (var i=0; i<data.result.{$name}.length; i++) {
|
||||
|
||||
if (data.result.{$name}[i] !== null && data.result.{$name}[i].status == 'ok') {
|
||||
var response = data.result.{$name}[i];
|
||||
var cover = "icon-check-empty";
|
||||
|
||||
if (response.cover == "1")
|
||||
cover = "icon-check-sign";
|
||||
|
||||
imageLine(response.id, response.path, response.position, cover, response.shops,
|
||||
response.legend[{$default_language|intval}])
|
||||
$("#countImage").html(parseInt($("#countImage").html()) + 1);
|
||||
$("#img" + id).remove();
|
||||
$("#imageTable").tableDnDUpdate();
|
||||
if (typeof data.result.{$name}[i].error !== 'undefined' && data.result.{$name}[i].error != '') {
|
||||
$('#{$id}-errors').html('<strong>'+data.result.{$name}[i].name+'</strong> : '+data.result.{$name}[i].error).parent().show();
|
||||
}
|
||||
else
|
||||
{
|
||||
$(data.context).appendTo($('#{$id}-success'));
|
||||
$('#{$id}-success').parent().show();
|
||||
|
||||
if (data.result.{$name}[i] !== null && data.result.{$name}[i].status == 'ok')
|
||||
{
|
||||
var response = data.result.{$name}[i];
|
||||
var cover = "icon-check-empty";
|
||||
|
||||
if (response.cover == "1")
|
||||
cover = "icon-check-sign";
|
||||
|
||||
imageLine(response.id, response.path, response.position, cover, response.shops,
|
||||
response.legend[{$default_language|intval}])
|
||||
$("#countImage").html(parseInt($("#countImage").html()) + 1);
|
||||
$("#img" + id).remove();
|
||||
$("#imageTable").tableDnDUpdate();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
$(data.context).find('button').remove();
|
||||
$(data.context).appendTo($('#{$id}-success'));
|
||||
$('#{$id}-success').parent().show();
|
||||
}
|
||||
},
|
||||
}).on('fileuploadalways', function (e, data) {
|
||||
|
||||
@@ -203,7 +203,7 @@
|
||||
</a>
|
||||
</div>
|
||||
<div class="panel-footer text-small">
|
||||
<a href="index.php?tab=AdminCustomerThreads&token={getAdminToken tab='AdminCustomerThreads'}">{l s='Show all messages'}</a>
|
||||
<a href="index.php?controller=AdminCustomerThreads&token={getAdminToken tab='AdminCustomerThreads'}">{l s='Show all messages'}</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@@ -122,25 +122,32 @@
|
||||
if (typeof data.result.{$name} !== 'undefined') {
|
||||
for (var i=0; i<data.result.{$name}.length; i++) {
|
||||
if (data.result.{$name}[i] !== null) {
|
||||
if (typeof data.result.{$name}[i].image !== 'undefined') {
|
||||
var template = '<div class="img-thumbnail text-center">';
|
||||
template += '<p>'+data.result.{$name}[i].image+'</p>';
|
||||
|
||||
if (typeof data.result.{$name}[i].delete_url !== 'undefined') {
|
||||
template += '<p><a class="btn btn-default" href="'+data.result.{$name}[i].delete_url+'"><i class="icon-trash"></i> {l s='Delete'}</a></p>';
|
||||
}
|
||||
if (typeof data.result.{$name}[i].error !== 'undefined' && data.result.{$name}[i].error != '') {
|
||||
$('#{$id}-errors').html('<strong>'+data.result.{$name}[i].name+'</strong> : '+data.result.{$name}[i].error).parent().show();
|
||||
}
|
||||
else
|
||||
{
|
||||
$(data.context).appendTo($('#{$id}-success'));
|
||||
$('#{$id}-success').parent().show();
|
||||
|
||||
template += '</div>';
|
||||
$('#{$id}-images-thumbnails').html($('#{$id}-images-thumbnails').html()+template);
|
||||
$('#{$id}-images-thumbnails').parent().show();
|
||||
if (typeof data.result.{$name}[i].image !== 'undefined')
|
||||
{
|
||||
var template = '<div class="img-thumbnail text-center">';
|
||||
template += '<p>'+data.result.{$name}[i].image+'</p>';
|
||||
|
||||
if (typeof data.result.{$name}[i].delete_url !== 'undefined')
|
||||
template += '<p><a class="btn btn-default" href="'+data.result.{$name}[i].delete_url+'"><i class="icon-trash"></i> {l s='Delete'}</a></p>';
|
||||
|
||||
template += '</div>';
|
||||
$('#{$id}-images-thumbnails').html($('#{$id}-images-thumbnails').html()+template);
|
||||
$('#{$id}-images-thumbnails').parent().show();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$(data.context).find('button').remove();
|
||||
$(data.context).appendTo($('#{$id}-success'));
|
||||
$('#{$id}-success').parent().show();
|
||||
$(data.context).find('button').remove();
|
||||
}
|
||||
},
|
||||
}).on('fileuploadalways', function (e, data) {
|
||||
|
||||
@@ -68,7 +68,7 @@ class MediaCore
|
||||
{
|
||||
//set an alphabetical order for args
|
||||
$html_content = preg_replace_callback(
|
||||
'/(<[a-zA-Z0-9]+)((\s?[a-zA-Z0-9]+=[\"\\\'][^\"\\\']*[\"\\\']\s?)*)>/',
|
||||
'/(<[a-zA-Z0-9]+)((\s\t?[a-zA-Z0-9]+=[\"\\\'][^\"\\\']*[\"\\\']\s\t?)*)>/',
|
||||
array('Media', 'minifyHTMLpregCallback'),
|
||||
$html_content,
|
||||
Media::getBackTrackLimit());
|
||||
|
||||
@@ -168,25 +168,24 @@ class UploaderCore
|
||||
file_put_contents($file_path, fopen('php://input', 'r'));
|
||||
}
|
||||
|
||||
$file_size = $this->_getFileSize($file_path);
|
||||
$file_size = $this->_getFileSize($file_path, true);
|
||||
|
||||
if ($file_size === $file['size'])
|
||||
{
|
||||
$file['save_path'] = $file_path;
|
||||
//TODO do image processing
|
||||
}
|
||||
else
|
||||
{
|
||||
$file['size'] = $file_size;
|
||||
unlink($file_path);
|
||||
$file['error'] = 'abort';
|
||||
$file['error'] = Tools::displayError('Server file size is different from local file size');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return $file;
|
||||
}
|
||||
|
||||
protected function validate($file)
|
||||
protected function validate(&$file)
|
||||
{
|
||||
$post_max_size = $this->getPostMaxSizeBytes();
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ class HelperImageUploaderCore extends HelperUploader
|
||||
return tempnam($this->getSavePath(), $this->getUniqueFileName());
|
||||
}
|
||||
|
||||
protected function validate($file)
|
||||
protected function validate(&$file)
|
||||
{
|
||||
$post_max_size = $this->getPostMaxSizeBytes();
|
||||
|
||||
@@ -62,7 +62,10 @@ class HelperImageUploaderCore extends HelperUploader
|
||||
}
|
||||
|
||||
if ($error = ImageManager::validateUpload($file, Tools::getMaxUploadSize($this->getMaxSize())))
|
||||
{
|
||||
$file['error'] = $error;
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($file['size'] > $this->getMaxSize())
|
||||
{
|
||||
|
||||
@@ -63,7 +63,8 @@ class AdminCustomersControllerCore extends AdminController
|
||||
a.date_add, gl.name as title, (
|
||||
SELECT SUM(total_paid_tax_excl / conversion_rate) FROM '._DB_PREFIX_.'orders o
|
||||
WHERE o.id_customer = a.id_customer
|
||||
AND active = 1
|
||||
'.Shop::addSqlRestriction(Shop::SHARE_ORDER, 'o').'
|
||||
AND a.active = 1
|
||||
) as total_spent, (
|
||||
SELECT c.date_add FROM '._DB_PREFIX_.'guest g
|
||||
LEFT JOIN '._DB_PREFIX_.'connections c ON c.id_guest = g.id_guest
|
||||
|
||||
@@ -3648,6 +3648,9 @@ class AdminProductsControllerCore extends AdminController
|
||||
else
|
||||
$image->cover = 0;
|
||||
|
||||
if (isset($file['error']))
|
||||
continue;
|
||||
|
||||
if (!$image->add())
|
||||
$file['error'] = Tools::displayError('Error while creating additional image');
|
||||
else
|
||||
|
||||
@@ -24,8 +24,7 @@
|
||||
*}
|
||||
|
||||
<li class="category_{$node.id}{if isset($last) && $last == 'true'} last{/if}">
|
||||
<h4><a href="{$node.link|escape:'html':'UTF-8'}" {if isset($currentCategoryId) && $node.id == $currentCategoryId}class="selected"{/if}
|
||||
title="{$node.desc|strip_tags|trim|escape:'html':'UTF-8'}">{$node.name|escape:'html':'UTF-8'}</a></h4>
|
||||
<h4><a href="{$node.link|escape:'html':'UTF-8'}"{if isset($currentCategoryId) && $node.id == $currentCategoryId} class="selected"{/if} title="{$node.desc|strip_tags|trim|escape:'html':'UTF-8'}">{$node.name|escape:'html':'UTF-8'}</a></h4>
|
||||
|
||||
{if $node.children|@count > 0}
|
||||
<ul class="main-level-submenus">
|
||||
|
||||
@@ -24,8 +24,7 @@
|
||||
*}
|
||||
|
||||
<li {if isset($last) && $last == 'true'}class="last"{/if}>
|
||||
<a href="{$node.link|escape:'html':'UTF-8'}" {if isset($currentCategoryId) && $node.id == $currentCategoryId}class="selected"{/if}
|
||||
title="{$node.desc|strip_tags|trim|escape:'html':'UTF-8'}">{$node.name|escape:'html':'UTF-8'}</a>
|
||||
<a href="{$node.link|escape:'html':'UTF-8'}"{if isset($currentCategoryId) && $node.id == $currentCategoryId} class="selected"{/if} title="{$node.desc|strip_tags|trim|escape:'html':'UTF-8'}">{$node.name|escape:'html':'UTF-8'}</a>
|
||||
{if $node.children|@count > 0}
|
||||
<ul>
|
||||
{foreach from=$node.children item=child name=categoryTreeBranch}
|
||||
|
||||
@@ -451,17 +451,17 @@
|
||||
<li><h3 class="page-subheading">{if $k eq 'invoice'}{l s='Invoice address'}{elseif $k eq 'delivery' && $delivery->id}{l s='Delivery address'}{/if}{if isset($address.object.alias)} <span class="address_alias">({$address.object.alias})</span>{/if}</h3></li>
|
||||
{foreach $address.ordered as $pattern}
|
||||
{assign var=addressKey value=" "|explode:$pattern}
|
||||
<li>
|
||||
{foreach $addressKey as $key}
|
||||
<span class="{if isset($addresses_style[$key])}{$addresses_style[$key]}{/if}">
|
||||
{if isset($address.formated[$key])}
|
||||
{$address.formated[$key]|escape:'html':'UTF-8'}
|
||||
{/if}
|
||||
</span>
|
||||
{assign var=addedli value=false}
|
||||
{foreach from=$addressKey item=key name=foo}
|
||||
{if isset($address.formated[$key]) && !empty($address.formated[$key])}
|
||||
{if (!$addedli)}
|
||||
{$addedli = true}
|
||||
<li>
|
||||
<span class="{if isset($addresses_style[$key])}{$addresses_style[$key]}{/if}">{/if}{$address.formated[$key]|escape:'html':'UTF-8'}{/if}{if ($smarty.foreach.foo.last && $addedli)}</span>
|
||||
</li>{/if}
|
||||
{/foreach}
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
</ul>
|
||||
</div>
|
||||
{/foreach}
|
||||
{/if}
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
{*
|
||||
* 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
|
||||
*}
|
||||
<div class="pagenotfound">
|
||||
<h1>{l s='This page is not available'}</h1>
|
||||
|
||||
<p>
|
||||
{l s='We\'re sorry, but the Web address you\'ve entered is no longer available.'}
|
||||
</p>
|
||||
|
||||
<h3>{l s='To find a product, please type its name in the field below.'}</h3>
|
||||
<form action="{$link->getPageLink('search')|escape:'html'}" method="post" class="std">
|
||||
<fieldset>
|
||||
<p>
|
||||
<label for="search">{l s='Search our product catalog:'}</label>
|
||||
<input id="search_query" name="search_query" type="text" />
|
||||
<input type="submit" name="Submit" value="OK" class="button_small" />
|
||||
</p>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<p><a href="{$base_dir}" title="{l s='Home'}"><img src="{$img_dir}icon/home.gif" alt="{l s='Home'}" class="icon" /> {l s='Home'}</a></p>
|
||||
</div>
|
||||
@@ -0,0 +1,130 @@
|
||||
{*
|
||||
* 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
|
||||
*}
|
||||
|
||||
{*
|
||||
** Retro compatibility for PrestaShop version < 1.4.2.5 with a recent theme
|
||||
*}
|
||||
|
||||
{* Two variable are necessaries to display the address with the new layout system *}
|
||||
{* Will be deleted for 1.5 version and more *}
|
||||
{if !isset($multipleAddresses)}
|
||||
{$ignoreList.0 = "id_address"}
|
||||
{$ignoreList.1 = "id_country"}
|
||||
{$ignoreList.2 = "id_state"}
|
||||
{$ignoreList.3 = "id_customer"}
|
||||
{$ignoreList.4 = "id_manufacturer"}
|
||||
{$ignoreList.5 = "id_supplier"}
|
||||
{$ignoreList.6 = "date_add"}
|
||||
{$ignoreList.7 = "date_upd"}
|
||||
{$ignoreList.8 = "active"}
|
||||
{$ignoreList.9 = "deleted"}
|
||||
|
||||
{* PrestaShop < 1.4.2 compatibility *}
|
||||
{if isset($addresses)}
|
||||
{$address_number = 0}
|
||||
{foreach from=$addresses key=k item=address}
|
||||
{counter start=0 skip=1 assign=address_key_number}
|
||||
{foreach from=$address key=address_key item=address_content}
|
||||
{if !in_array($address_key, $ignoreList)}
|
||||
{$multipleAddresses.$address_number.ordered.$address_key_number = $address_key}
|
||||
{$multipleAddresses.$address_number.formated.$address_key = $address_content}
|
||||
{counter}
|
||||
{/if}
|
||||
{/foreach}
|
||||
{$multipleAddresses.$address_number.object = $address}
|
||||
{$address_number = $address_number + 1}
|
||||
{/foreach}
|
||||
{/if}
|
||||
{/if}
|
||||
|
||||
{* Define the style if it doesn't exist in the PrestaShop version*}
|
||||
{* Will be deleted for 1.5 version and more *}
|
||||
{if !isset($addresses_style)}
|
||||
{$addresses_style.company = 'address_company'}
|
||||
{$addresses_style.vat_number = 'address_company'}
|
||||
{$addresses_style.firstname = 'address_name'}
|
||||
{$addresses_style.lastname = 'address_name'}
|
||||
{$addresses_style.address1 = 'address_address1'}
|
||||
{$addresses_style.address2 = 'address_address2'}
|
||||
{$addresses_style.city = 'address_city'}
|
||||
{$addresses_style.country = 'address_country'}
|
||||
{$addresses_style.phone = 'address_phone'}
|
||||
{$addresses_style.phone_mobile = 'address_phone_mobile'}
|
||||
{$addresses_style.alias = 'address_title'}
|
||||
{/if}
|
||||
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
{literal}
|
||||
$(document).ready(function()
|
||||
{
|
||||
resizeAddressesBox();
|
||||
});
|
||||
{/literal}
|
||||
//]]>
|
||||
</script>
|
||||
|
||||
{capture name=path}<a href="{$link->getPageLink('my-account', true)|escape:'html'}">{l s='My account'}</a><span class="navigation-pipe">{$navigationPipe}</span>{l s='My addresses'}{/capture}
|
||||
{include file="$tpl_dir./breadcrumb.tpl"}
|
||||
|
||||
<h1>{l s='My addresses'}</h1>
|
||||
<p>{l s='Please configure your default billing and delivery addresses when placing an order. You may also add additional addresses, which can be useful for sending gifts or receiving an order at your office.'}</p>
|
||||
|
||||
{if isset($multipleAddresses) && $multipleAddresses}
|
||||
<div class="addresses">
|
||||
<h3>{l s='Your addresses are listed below.'}</h3>
|
||||
<p>{l s='Be sure to update your personal information if it has changed.'}</p>
|
||||
{assign var="adrs_style" value=$addresses_style}
|
||||
<div class="bloc_adresses clearfix">
|
||||
{foreach from=$multipleAddresses item=address name=myLoop}
|
||||
<ul class="address {if $smarty.foreach.myLoop.last}last_item{elseif $smarty.foreach.myLoop.first}first_item{/if} {if $smarty.foreach.myLoop.index % 2}alternate_item{else}item{/if}">
|
||||
<li class="address_title">{$address.object.alias}</li>
|
||||
{foreach from=$address.ordered name=adr_loop item=pattern}
|
||||
{assign var=addressKey value=" "|explode:$pattern}
|
||||
<li>
|
||||
{foreach from=$addressKey item=key name="word_loop"}
|
||||
<span{if isset($addresses_style[$key])} class="{$addresses_style[$key]}"{/if}>
|
||||
{$address.formated[$key|replace:',':'']|escape:'html':'UTF-8'}
|
||||
</span>
|
||||
{/foreach}
|
||||
</li>
|
||||
{/foreach}
|
||||
<li class="address_update"><a href="{$link->getPageLink('address', true, null, "id_address={$address.object.id|intval}")|escape:'html'}" title="{l s='Update'}">» {l s='Update'}</a></li>
|
||||
<li class="address_delete"><a href="{$link->getPageLink('address', true, null, "id_address={$address.object.id|intval}&delete")|escape:'html'}" onclick="return confirm('{l s='Are you sure?' js=1}');" title="{l s='Delete'}">» {l s='Delete'}</a></li>
|
||||
</ul>
|
||||
{/foreach}
|
||||
</div>
|
||||
<p class="clear" />
|
||||
</div>
|
||||
{else}
|
||||
<p class="warning">{l s='No addresses are available.'} <a href="{$link->getPageLink('address', true)|escape:'html'}">{l s='Add a new address'}</a></p>
|
||||
{/if}
|
||||
|
||||
<div class="clear address_add"><a href="{$link->getPageLink('address', true)|escape:'html'}" title="{l s='Add an address'}" class="button_large">{l s='Add an address'}</a></div>
|
||||
|
||||
<ul class="footer_links">
|
||||
<li><a href="{$link->getPageLink('my-account', true)|escape:'html'}"><img src="{$img_dir}icon/my-account.gif" alt="" class="icon" /> {l s='Back to your account'}</a></li>
|
||||
<li class="f_right"><a href="{$base_dir}"><img src="{$img_dir}icon/home.gif" alt="" class="icon" /> {l s='Home'}</a></li>
|
||||
</ul>
|
||||
@@ -0,0 +1,54 @@
|
||||
{*
|
||||
* 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
|
||||
*}
|
||||
|
||||
{capture name=path}{l s='Top sellers'}{/capture}
|
||||
{include file="$tpl_dir./breadcrumb.tpl"}
|
||||
|
||||
<h1>{l s='Top sellers'}</h1>
|
||||
|
||||
{if $products}
|
||||
<div class="content_sortPagiBar">
|
||||
{include file="$tpl_dir./pagination.tpl"}
|
||||
|
||||
<div class="sortPagiBar clearfix">
|
||||
{include file="./product-sort.tpl"}
|
||||
{include file="./product-compare.tpl"}
|
||||
{include file="./nbr-product-page.tpl"}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{include file="./product-list.tpl" products=$products}
|
||||
|
||||
<div class="content_sortPagiBar">
|
||||
<div class="sortPagiBar clearfix">
|
||||
{include file="./product-sort.tpl" paginationId='bottom'}
|
||||
{include file="./product-compare.tpl" paginationId='bottom'}
|
||||
{include file="./nbr-product-page.tpl" paginationId='bottom'}
|
||||
</div>
|
||||
{include file="./pagination.tpl" paginationId='bottom'}
|
||||
</div>
|
||||
{else}
|
||||
<p class="warning">{l s='No top sellers for the moment.'}</p>
|
||||
{/if}
|
||||
@@ -0,0 +1,39 @@
|
||||
{*
|
||||
* 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
|
||||
*}
|
||||
|
||||
<!-- Breadcrumb -->
|
||||
{if isset($smarty.capture.path)}{assign var='path' value=$smarty.capture.path}{/if}
|
||||
<div class="breadcrumb">
|
||||
<a href="{$base_dir}" title="{l s='Return to Home'}"><img src="{$img_dir}icon/home.gif" height="26" width="26" alt="{l s='Home'}" /></a>
|
||||
{if isset($path) AND $path}
|
||||
<span class="navigation-pipe" {if isset($category) && isset($category->id_category) && $category->id_category == 1}style="display:none;"{/if}>{$navigationPipe|escape:html:'UTF-8'}</span>
|
||||
{if !$path|strpos:'span'}
|
||||
<span class="navigation_page">{$path}</span>
|
||||
{else}
|
||||
{$path}
|
||||
{/if}
|
||||
{/if}
|
||||
</div>
|
||||
<!-- /Breadcrumb -->
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/*
|
||||
* 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
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
@@ -0,0 +1,52 @@
|
||||
{*
|
||||
* 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
|
||||
*}
|
||||
|
||||
<li {if isset($last) && $last == 'true'}class="last"{/if}>
|
||||
<strong><a href="{$node.link|escape:'html':'UTF-8'}" title="{$node.name|escape:'html':'UTF-8'}">{$node.name|escape:'html':'UTF-8'}</a></strong>
|
||||
{if isset($node.children) && $node.children|@count > 0}
|
||||
<ul>
|
||||
{foreach from=$node.children item=child name=categoryCmsTreeBranch}
|
||||
{if isset($child.children) && $child.children|@count > 0 || isset($child.cms) && $child.cms|@count > 0}
|
||||
{if $smarty.foreach.categoryCmsTreeBranch.last && $node.cms|@count == 0}
|
||||
{include file="$tpl_dir./category-cms-tree-branch.tpl" node=$child last='true'}
|
||||
{else}
|
||||
{include file="$tpl_dir./category-cms-tree-branch.tpl" node=$child}
|
||||
{/if}
|
||||
{/if}
|
||||
{/foreach}
|
||||
{if isset($node.cms) && $node.cms|@count > 0}
|
||||
{foreach from=$node.cms item=cms name=cmsTreeBranch}
|
||||
<li {if $smarty.foreach.cmsTreeBranch.last}class="last"{/if} ><a href="{$cms.link|escape:'html':'UTF-8'}" title="{$cms.meta_title|escape:'html':'UTF-8'}">{$cms.meta_title|escape:'html':'UTF-8'}</a></li>
|
||||
{/foreach}
|
||||
{/if}
|
||||
</ul>
|
||||
{elseif isset($node.cms) && $node.cms|@count > 0}
|
||||
<ul>
|
||||
{foreach from=$node.cms item=cms name=cmsTreeBranch}
|
||||
<li {if $smarty.foreach.cmsTreeBranch.last}class="last"{/if} ><a href="{$cms.link|escape:'html':'UTF-8'}" title="{$cms.meta_title|escape:'html':'UTF-8'}">{$cms.meta_title|escape:'html':'UTF-8'}</a></li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
{/if}
|
||||
</li>
|
||||
@@ -0,0 +1,34 @@
|
||||
{*
|
||||
* 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
|
||||
* @version Release: $Revision$
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
{if $category->id == 1 OR $nb_products == 0}
|
||||
{l s='There are no products in this category'}
|
||||
{else}
|
||||
{if $nb_products == 1}
|
||||
{l s='There is %d product.' sprintf=$nb_products}
|
||||
{else}
|
||||
{l s='There are %d products.' sprintf=$nb_products}
|
||||
{/if}
|
||||
{/if}
|
||||
@@ -0,0 +1,39 @@
|
||||
{*
|
||||
* 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
|
||||
*}
|
||||
|
||||
<li {if isset($last) && $last == 'true'}class="last"{/if}>
|
||||
<a href="{$node.link|escape:'html':'UTF-8'}" {if isset($currentCategoryId) && $node.id == $currentCategoryId}class="selected"{/if} title="{$node.desc|escape:'html':'UTF-8'}">{$node.name|escape:'html':'UTF-8'}</a>
|
||||
{if $node.children|@count > 0}
|
||||
<ul>
|
||||
{foreach from=$node.children item=child name=categoryTreeBranch}
|
||||
{if $smarty.foreach.categoryTreeBranch.last}
|
||||
{include file="$tpl_dir./category-tree-branch.tpl" node=$child last='true'}
|
||||
{else}
|
||||
{include file="$tpl_dir./category-tree-branch.tpl" node=$child last='false'}
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
{/if}
|
||||
</li>
|
||||
@@ -0,0 +1,74 @@
|
||||
{*
|
||||
* 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 ($content_only == 0)}
|
||||
{include file="$tpl_dir./breadcrumb.tpl"}
|
||||
{/if}
|
||||
{if isset($cms) && !isset($cms_category)}
|
||||
{if !$cms->active}
|
||||
<br />
|
||||
<div id="admin-action-cms">
|
||||
<p>{l s='This CMS page is not visible to your customers.'}
|
||||
<input type="hidden" id="admin-action-cms-id" value="{$cms->id}" />
|
||||
<input type="submit" value="{l s='Publish'}" class="exclusive" onclick="submitPublishCMS('{$base_dir}{$smarty.get.ad|escape:'html':'UTF-8'}', 0, '{$smarty.get.adtoken|escape:'html':'UTF-8'}')"/>
|
||||
<input type="submit" value="{l s='Back'}" class="exclusive" onclick="submitPublishCMS('{$base_dir}{$smarty.get.ad|escape:'html':'UTF-8'}', 1, '{$smarty.get.adtoken|escape:'html':'UTF-8'}')"/>
|
||||
</p>
|
||||
<div class="clear" ></div>
|
||||
<p id="admin-action-result"></p>
|
||||
</p>
|
||||
</div>
|
||||
{/if}
|
||||
<div class="rte{if $content_only} content_only{/if}">
|
||||
{$cms->content}
|
||||
</div>
|
||||
{elseif isset($cms_category)}
|
||||
<div class="block-cms">
|
||||
<h1><a href="{if $cms_category->id eq 1}{$base_dir}{else}{$link->getCMSCategoryLink($cms_category->id, $cms_category->link_rewrite)}{/if}">{$cms_category->name|escape:'html':'UTF-8'}</a></h1>
|
||||
{if isset($sub_category) && !empty($sub_category)}
|
||||
<p class="title_block">{l s='List of sub categories in %s:' sprintf=$cms_category->name}</p>
|
||||
<ul class="bullet">
|
||||
{foreach from=$sub_category item=subcategory}
|
||||
<li>
|
||||
<a href="{$link->getCMSCategoryLink($subcategory.id_cms_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}">{$subcategory.name|escape:'html':'UTF-8'}</a>
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
{/if}
|
||||
{if isset($cms_pages) && !empty($cms_pages)}
|
||||
<p class="title_block">{l s='List of pages in %s:' sprintf=$cms_category->name}</p>
|
||||
<ul class="bullet">
|
||||
{foreach from=$cms_pages item=cmspages}
|
||||
<li>
|
||||
<a href="{$link->getCMSLink($cmspages.id_cms, $cmspages.link_rewrite)|escape:'html':'UTF-8'}">{$cmspages.meta_title|escape:'html':'UTF-8'}</a>
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
{/if}
|
||||
</div>
|
||||
{else}
|
||||
<div class="error">
|
||||
{l s='This page does not exist.'}
|
||||
</div>
|
||||
{/if}
|
||||
<br />
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<theme>
|
||||
<version value="1.4">
|
||||
<ccc available="true" />
|
||||
<guest_checkout available="true" />
|
||||
<one_page_checkout available="true" />
|
||||
<store_locator available="true" />
|
||||
</version>
|
||||
</theme>
|
||||
@@ -0,0 +1,102 @@
|
||||
div.addresses {
|
||||
position:relative;
|
||||
padding:15px;
|
||||
border:1px solid #ccc;
|
||||
font-size:12px;
|
||||
background:#f8f8f8
|
||||
}
|
||||
|
||||
ul.address {
|
||||
list-style-type:none;
|
||||
float:left;
|
||||
position:relative;
|
||||
width:345px !important
|
||||
}
|
||||
#address_delivery {margin-right:35px;}
|
||||
#address_invoice {margin-right:0}
|
||||
#delivery_address {margin-right:65px;}
|
||||
|
||||
ul.address li {
|
||||
padding:0 15px;
|
||||
font-weight:bold;
|
||||
line-height:18px;
|
||||
text-transform:uppercase
|
||||
}
|
||||
|
||||
ul.address li.address_title {
|
||||
height: 29px;
|
||||
font-weight: bold;
|
||||
line-height:29px;
|
||||
color:#fff;
|
||||
text-shadow:0 1px 0 #666;
|
||||
background:url(../img/bg_table_th.png) repeat-x 0 -10px #999
|
||||
}
|
||||
ul.address .address_alias {
|
||||
font-weight: normal;
|
||||
text-transform: none;
|
||||
}
|
||||
ul.address >li:first-child + li {
|
||||
margin-top:8px
|
||||
}
|
||||
|
||||
ul.address li.address_update {
|
||||
margin-top:20px
|
||||
}
|
||||
ul.address li.address_update,
|
||||
ul.address li.address_delete {
|
||||
font-size:11px;
|
||||
text-transform:none
|
||||
}
|
||||
.address_add {
|
||||
padding:20px 0
|
||||
}
|
||||
.address_select {
|
||||
border:1px solid #ccc;
|
||||
width: 200px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
label[for=id_address_delivery], label[for=id_address_invoice] {
|
||||
float: left;
|
||||
width: 225px;
|
||||
}
|
||||
.addressesAreEquals label {
|
||||
margin-left: 5px;
|
||||
}
|
||||
.addressesAreEquals input {
|
||||
float: left;
|
||||
}
|
||||
p.address_delivery, p.addressesAreEquals {
|
||||
padding-bottom: 14px
|
||||
}
|
||||
/* PAGE ADRESSES ******************************************************************************* */
|
||||
.addresses ul.address {
|
||||
list-style-type:none;
|
||||
float:left;
|
||||
position:relative;
|
||||
margin:30px 30px 0 0;
|
||||
width:345px !important
|
||||
}
|
||||
.addresses ul.address.alternate_item,
|
||||
.addresses ul.address.last_item {margin-right:0}
|
||||
.addresses ul.address li {
|
||||
padding:0 15px;
|
||||
font-weight:bold;
|
||||
line-height:18px;
|
||||
text-transform:uppercase
|
||||
}
|
||||
.addresses ul.address .address_title {
|
||||
margin-bottom:5px;
|
||||
height: 29px;
|
||||
font-weight: bold;
|
||||
line-height:29px;
|
||||
color:#fff;
|
||||
text-shadow:0 1px 0 #666;
|
||||
background:url(../img/bg_table_th.png) repeat-x 0 -10px #999
|
||||
}
|
||||
.addresses ul.address .address_update {margin-top:20px}
|
||||
.addresses ul.address .address_update,
|
||||
.addresses ul.address .address_delete {
|
||||
font-size:11px;
|
||||
text-transform:none
|
||||
}
|
||||
|
||||
@@ -0,0 +1,81 @@
|
||||
#account-creation_form fieldset, fieldset.account_creation {
|
||||
padding:0 0 15px 0;
|
||||
border:1px solid #ccc;
|
||||
background:#f8f8f8;
|
||||
}
|
||||
#account-creation_form h3 {
|
||||
margin:0 0 15px 0;
|
||||
padding:8px;
|
||||
font-size:14px;
|
||||
color:#fff;
|
||||
text-transform:uppercase;
|
||||
background:url(../img/bg_form_h3.png) repeat-x 0 0 #989898;
|
||||
}
|
||||
#center_column #account-creation_form p {margin:0; padding:0 0 10px 0}
|
||||
#account-creation_form p.required {color:#222}
|
||||
#account-creation_form p.required sup {color:#990000}
|
||||
#account-creation_form p.radio span,
|
||||
#account-creation_form p.text label,
|
||||
#account-creation_form p.password label,
|
||||
#account-creation_form p.select label,
|
||||
#account-creation_form p.select span,
|
||||
#account-creation_form p.textarea label {
|
||||
display:inline-block;
|
||||
padding:6px 15px;
|
||||
width:230px;/* 260 */
|
||||
font-size:14px;
|
||||
text-align:right;
|
||||
}
|
||||
#account-creation_form p.radio label {
|
||||
float:none;
|
||||
padding-right:10px;
|
||||
width:auto;
|
||||
font-size:14px;
|
||||
}
|
||||
#account-creation_form p.radio input {
|
||||
position: relative;
|
||||
bottom: -3px;
|
||||
}
|
||||
#account-creation_form p.checkbox label {
|
||||
float:none;
|
||||
width:auto;
|
||||
font-size:12px;
|
||||
}
|
||||
#account-creation_form p.text input,
|
||||
#account-creation_form p.password input,
|
||||
#account-creation_form p.select input {
|
||||
padding:0 5px;
|
||||
height:22px;
|
||||
width:360px;/* 370 */
|
||||
border:1px solid #ccc;
|
||||
font-size: 12px;
|
||||
color:#666;
|
||||
}
|
||||
#account-creation_form span.inline-infos{display:inline-block;}
|
||||
#account-creation_form p.checkbox input {
|
||||
margin-left:260px;
|
||||
}
|
||||
#account-creation_form p.select select {
|
||||
margin-right:10px;
|
||||
border:1px solid #ccc;
|
||||
font-size: 12px;
|
||||
color:#666;
|
||||
}
|
||||
#account-creation_form p.textarea textarea {
|
||||
height:80px;
|
||||
width:370px;
|
||||
border:1px solid #ccc;
|
||||
font-size: 12px;
|
||||
color:#666;
|
||||
}
|
||||
#account-creation_form span.form_info, #account-creation_form p.inline-infos {
|
||||
display:block;
|
||||
margin:5px 0 0 265px!important;
|
||||
color:#666;
|
||||
}
|
||||
#account-creation_form .id_state, #account-creation_form .dni, #account-creation_form .postcode {
|
||||
display: none;
|
||||
}
|
||||
#center_column #account-creation_form p.cart_navigation {
|
||||
margin:20px 0;
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
h1{margin-bottom:10px;}
|
||||
|
||||
.resumecat {
|
||||
margin:15px 0 10px 0;
|
||||
padding:8px 7px;
|
||||
color:#000;
|
||||
background:#f0f0f0;
|
||||
}
|
||||
|
||||
.content_scene_cat {
|
||||
padding:5px;
|
||||
border:1px solid #ccc;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
-moz-box-shadow: 0 1px 1px #e2e2e2;
|
||||
-webkit-box-shadow: 0 1px 1px #e2e2e2;
|
||||
box-shadow: 0 1px 1px #e2e2e2;
|
||||
}
|
||||
|
||||
.cat_desc {
|
||||
font-size:12px;
|
||||
line-height:18px;
|
||||
}
|
||||
.cat_desc p {padding:0 10px 5px 10px}
|
||||
.cat_desc .lnk_more {
|
||||
padding:0 10px;
|
||||
color:#0088CC;
|
||||
background:url(../img/arrow_right_1.png) no-repeat 100% 4px transparent;
|
||||
}
|
||||
|
||||
|
||||
/* ************************************************************************************************
|
||||
SUB CATEGORIES
|
||||
************************************************************************************************ */
|
||||
#subcategories {margin-top:15px}
|
||||
#subcategories h3 {
|
||||
padding:14px 12px;
|
||||
font-size:13px;
|
||||
color:#fff;
|
||||
text-transform:uppercase;
|
||||
text-shadow:0 1px 0 #666;
|
||||
background:url(../img/bg_table_th.png) repeat-x 0 0 #999
|
||||
}
|
||||
|
||||
.inline_list {
|
||||
list-style-type:none;
|
||||
margin-top:10px;
|
||||
}
|
||||
.inline_list li {
|
||||
padding:10px 0;
|
||||
border-bottom:1px dotted #ccc
|
||||
}
|
||||
.inline_list li .img {
|
||||
float:left;
|
||||
margin-right:15px
|
||||
}
|
||||
.inline_list li img {
|
||||
border:1px solid #ccc
|
||||
}
|
||||
.inline_list li .cat_name {
|
||||
font-weight:bold;
|
||||
font-size:13px
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
/* CMS pages ****************************************************************************** */
|
||||
#cms #center_column ul,
|
||||
#cms #center_column ol,
|
||||
#cms #center_column dl { margin-left:25px; margin-bottom:20px }
|
||||
|
||||
#cms #center_column li { margin-bottom:5px }
|
||||
@@ -0,0 +1,98 @@
|
||||
table#product_comparison {
|
||||
width:100%;
|
||||
border-right:1px solid #ccc;
|
||||
border-bottom:1px solid #ccc;
|
||||
}
|
||||
#product_comparison tr.comparison_header {font-weight:bold}
|
||||
#product_comparison td {
|
||||
padding:6px;
|
||||
border-top:1px solid #ccc;
|
||||
border-left:1px solid #ccc;
|
||||
border-right:1px solid #ccc;
|
||||
vertical-align:top
|
||||
}
|
||||
#product_comparison td.td_empty{
|
||||
border:none;
|
||||
background:#fff;
|
||||
}
|
||||
#product_comparison tr.comparison_header,
|
||||
#product_comparison td.comparison_feature_even {background:#f8f8f8}
|
||||
|
||||
#product_comparison .product_image {
|
||||
display:block;
|
||||
text-align:center
|
||||
}
|
||||
#product_comparison .product_image img {border:1px solid #ccc}
|
||||
#product_comparison .s_title_block {
|
||||
margin-bottom:10px;
|
||||
font-size:12px;
|
||||
color:#000;
|
||||
font-weight:bold;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
#product_comparison .product_desc {
|
||||
padding-bottom:5px;
|
||||
height:40px;
|
||||
color:#666
|
||||
}
|
||||
#product_comparison .lnk_more {
|
||||
display:block;
|
||||
margin-bottom:10px;
|
||||
padding-left:10px;
|
||||
color:#0088cc;
|
||||
background:url(../img/arrow_right_1.png) no-repeat 0 4px transparent;
|
||||
}
|
||||
|
||||
.prices_container {height:50px}
|
||||
.price_container {padding-bottom:10px}
|
||||
#product_comparison .price {
|
||||
font-weight:bold;
|
||||
font-size:14px;
|
||||
color:#990000
|
||||
}
|
||||
.discount {
|
||||
display:inline-block;
|
||||
padding:1px 5px;
|
||||
font-size:10px;
|
||||
font-weight:bold;
|
||||
color:#fff;
|
||||
text-transform:uppercase;
|
||||
background:#9B0000
|
||||
}
|
||||
|
||||
.comparison_availability_statut {display:none}
|
||||
|
||||
#product_comparison .cmp_remove {
|
||||
display:block;
|
||||
margin-bottom:10px;
|
||||
padding-right:16px;
|
||||
font-weight:bold;
|
||||
text-align:right;
|
||||
background:url(../img/icon/delete.gif) no-repeat 100% 1px transparent;
|
||||
}
|
||||
|
||||
.ajax_add_to_cart_button {
|
||||
margin-left:9px;
|
||||
padding-left:20px !important
|
||||
}
|
||||
.ajax_add_to_cart_button span {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: -1px;
|
||||
height: 26px;
|
||||
left: -12px;
|
||||
width: 26px;
|
||||
background: url(../img/icon/pict_add_cart.png) no-repeat 0 0 transparent
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
|
||||
#contact fieldset {
|
||||
padding:0 0 15px 0;
|
||||
border:1px solid #ccc;
|
||||
background:#f8f8f8
|
||||
}
|
||||
#contact h3 {
|
||||
margin:0 0 15px 0;
|
||||
padding:8px;
|
||||
font-size:14px;
|
||||
color:#fff;
|
||||
text-transform:uppercase;
|
||||
background:url(../img/bg_form_h3.png) repeat-x 0 0 #989898
|
||||
}
|
||||
#contact #center_column p {margin:0; padding:0 0 10px 0;}
|
||||
#contact #center_column p.desc_contact { text-align: center; padding-left: 10px; padding-right: 10px; }
|
||||
|
||||
#contact p.text label,
|
||||
#contact p.select label,
|
||||
#contact p.select span,
|
||||
#contact p.textarea label {
|
||||
display:inline-block;
|
||||
padding:6px 15px;
|
||||
width:150px;/* 180 */
|
||||
font-size:12px;
|
||||
text-align:right
|
||||
}
|
||||
#contact p.textarea label {vertical-align:top}
|
||||
#contact p.text input,
|
||||
#contact p.select input {
|
||||
padding:0 5px;
|
||||
height:22px;
|
||||
width:260px;/* 270 */
|
||||
border:1px solid #ccc;
|
||||
font-size: 12px;
|
||||
color:#666
|
||||
}
|
||||
#contact p.select select {
|
||||
margin-right:10px;
|
||||
border:1px solid #ccc;
|
||||
font-size: 12px;
|
||||
color:#666
|
||||
}
|
||||
#contact p.textarea textarea {
|
||||
height:80px;
|
||||
width:270px;
|
||||
border:1px solid #ccc;
|
||||
font-size: 12px;
|
||||
color:#666
|
||||
}
|
||||
#contact p.submit input {margin-left:185px;}
|
||||
@@ -0,0 +1,138 @@
|
||||
/*
|
||||
Variable Grid System.
|
||||
Learn more ~ http://www.spry-soft.com/grids/
|
||||
Based on 960 Grid System - http://960.gs/
|
||||
|
||||
Licensed under GPL and MIT.
|
||||
*/
|
||||
|
||||
/* Containers
|
||||
----------------------------------------------------------------------------------------------------*/
|
||||
.container_9 {
|
||||
margin:0 auto;
|
||||
width: 980px;
|
||||
}
|
||||
|
||||
|
||||
/* Grid >> Global
|
||||
----------------------------------------------------------------------------------------------------*/
|
||||
.grid_1,
|
||||
.grid_2,
|
||||
.grid_3,
|
||||
.grid_4,
|
||||
.grid_5,
|
||||
.grid_6,
|
||||
.grid_7,
|
||||
.grid_8,
|
||||
.grid_9 {
|
||||
display:inline;
|
||||
float: left;
|
||||
position: relative;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
|
||||
/* Grid >> Children (Alpha ~ First, Omega ~ Last)
|
||||
----------------------------------------------------------------------------------------------------*/
|
||||
.alpha {margin-left: 0;}
|
||||
.omega {margin-right: 0;}
|
||||
|
||||
|
||||
/* Grid >> 9 Columns
|
||||
----------------------------------------------------------------------------------------------------*/
|
||||
.container_9 .grid_1 {width:91px;}
|
||||
.container_9 .grid_2 {width:202px;}
|
||||
.container_9 .grid_3 {width:313px;}
|
||||
.container_9 .grid_4 {width:424px;}
|
||||
.container_9 .grid_5 {width:535px;}
|
||||
.container_9 .grid_6 {width:646px;}
|
||||
.container_9 .grid_7 {width:757px;}
|
||||
.container_9 .grid_8 {width:868px;}
|
||||
.container_9 .grid_9 {width:980px;}
|
||||
|
||||
|
||||
/* Prefix Extra Space >> 9 Columns
|
||||
----------------------------------------------------------------------------------------------------*/
|
||||
.container_9 .prefix_1 {padding-left:111px;}
|
||||
.container_9 .prefix_2 {padding-left:222px;}
|
||||
.container_9 .prefix_3 {padding-left:333px;}
|
||||
.container_9 .prefix_4 {padding-left:444px;}
|
||||
.container_9 .prefix_5 {padding-left:555px;}
|
||||
.container_9 .prefix_6 {padding-left:666px;}
|
||||
.container_9 .prefix_7 {padding-left:777px;}
|
||||
.container_9 .prefix_8 {padding-left:888px;}
|
||||
|
||||
|
||||
/* Suffix Extra Space >> 9 Columns
|
||||
----------------------------------------------------------------------------------------------------*/
|
||||
.container_9 .suffix_1 {padding-right:111px;}
|
||||
.container_9 .suffix_2 {padding-right:222px;}
|
||||
.container_9 .suffix_3 {padding-right:333px;}
|
||||
.container_9 .suffix_4 {padding-right:444px;}
|
||||
.container_9 .suffix_5 {padding-right:555px;}
|
||||
.container_9 .suffix_6 {padding-right:666px;}
|
||||
.container_9 .suffix_7 {padding-right:777px;}
|
||||
.container_9 .suffix_8 {padding-right:888px;}
|
||||
|
||||
|
||||
/* Push Space >> 9 Columns
|
||||
----------------------------------------------------------------------------------------------------*/
|
||||
.container_9 .push_1 {left:111px;}
|
||||
.container_9 .push_2 {left:222px;}
|
||||
.container_9 .push_3 {left:333px;}
|
||||
.container_9 .push_4 {left:444px;}
|
||||
.container_9 .push_5 {left:555px;}
|
||||
.container_9 .push_6 {left:666px;}
|
||||
.container_9 .push_7 {left:777px;}
|
||||
.container_9 .push_8 {left:888px;}
|
||||
|
||||
|
||||
/* Pull Space >> 9 Columns
|
||||
----------------------------------------------------------------------------------------------------*/
|
||||
.container_9 .pull_1 {left:-111px;}
|
||||
.container_9 .pull_2 {left:-222px;}
|
||||
.container_9 .pull_3 {left:-333px;}
|
||||
.container_9 .pull_4 {left:-444px;}
|
||||
.container_9 .pull_5 {left:-555px;}
|
||||
.container_9 .pull_6 {left:-666px;}
|
||||
.container_9 .pull_7 {left:-777px;}
|
||||
.container_9 .pull_8 {left:-888px;}
|
||||
|
||||
|
||||
/* Clear Floated Elements
|
||||
----------------------------------------------------------------------------------------------------*/
|
||||
|
||||
/* http://sonspring.com/journal/clearing-floats */
|
||||
.clear {
|
||||
/*clear: both;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
visibility: hidden;
|
||||
width: 0;
|
||||
height: 0;*/
|
||||
}
|
||||
|
||||
/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack
|
||||
|
||||
.clearfix:after {
|
||||
clear: both;
|
||||
content: ' ';
|
||||
display: block;
|
||||
font-size: 0;
|
||||
line-height: 0;
|
||||
visibility: hidden;
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.clearfix { display: inline-block;
|
||||
}
|
||||
|
||||
* html .clearfix {
|
||||
height: 1%;
|
||||
}
|
||||
|
||||
.clearfix {
|
||||
display: block;
|
||||
}
|
||||
*/
|
||||
@@ -0,0 +1,71 @@
|
||||
#identity #left_column {display:none}
|
||||
#identity #center_column{width:757px}
|
||||
#identity h3 {
|
||||
font-weight:normal;
|
||||
font-size:13px;
|
||||
}
|
||||
#identity p {
|
||||
padding-bottom:10px;
|
||||
}
|
||||
#identity form.std fieldset {
|
||||
margin-top:0;
|
||||
padding:10px;
|
||||
-moz-border-radius:3px;
|
||||
-webkit-border-radius:3px;
|
||||
border-radius:3px;
|
||||
background:#eee;
|
||||
}
|
||||
#identity .std p.required {color:#333}
|
||||
#identity .std p.text label,
|
||||
#identity .std p.password label,
|
||||
#identity .std p.select label {
|
||||
display:inline-block;
|
||||
padding-right:10px;
|
||||
width:174px;/* 184 */
|
||||
font-weight:bold;
|
||||
font-size:12px;
|
||||
text-align:right;
|
||||
}
|
||||
#identity .std p.text label sup,
|
||||
#identity .std p.password label sup,
|
||||
#identity .std p.select label sup {color:#990000;}
|
||||
#identity .std p.text input,
|
||||
#identity .std p.password input {
|
||||
padding:0 5px;
|
||||
height:20px;
|
||||
width:253px;/* 263 */
|
||||
border:1px solid #ccc;
|
||||
background:url(../img/bg_input.png) repeat-x 0 0 #fff;
|
||||
}
|
||||
#identity .std p.select select {
|
||||
border:1px solid #ccc;
|
||||
}
|
||||
#identity .std p.radio span {
|
||||
display:inline-block;
|
||||
padding-right:10px;
|
||||
width:174px;/* 184 */
|
||||
font-weight:bold;
|
||||
font-size:12px;
|
||||
text-align:right;
|
||||
}
|
||||
#identity .std p.radio input {
|
||||
padding:0 5px;
|
||||
height:auto;
|
||||
width:auto;
|
||||
border:none;
|
||||
background:none;
|
||||
position: relative;
|
||||
bottom: -3px;
|
||||
}
|
||||
#identity .std p.checkbox input {
|
||||
position:relative;
|
||||
top:2px;
|
||||
left:0;
|
||||
margin:0 2px 0 187px;
|
||||
}
|
||||
#identity .std p.submit {padding:10px 0 20px 187px}
|
||||
#identity .std p.submit .button {padding:5px 25px}
|
||||
#identity .std #security_informations {
|
||||
padding:0 0 0 187px;
|
||||
font-size:11px;
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/*
|
||||
* 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
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
@@ -0,0 +1,12 @@
|
||||
#maintenance {
|
||||
margin:0 auto;
|
||||
width:940px;
|
||||
font:normal 30px Arial, Verdana, sans-serif;
|
||||
color:#333;
|
||||
}
|
||||
#maintenance #message {
|
||||
margin:0 20px;
|
||||
padding:50px 310px 0 0;
|
||||
height:360px;
|
||||
background:url(../img/bg_maintenance.png) no-repeat 100% 0 #fff
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
#my-account #left_column {display:none}
|
||||
#my-account #center_column {width:757px}
|
||||
#my-account #center_column h1 {margin-bottom:20px}
|
||||
|
||||
#my-account #center_column .title_block {
|
||||
font-weight:normal;
|
||||
font-size:12px;
|
||||
color:#666
|
||||
}
|
||||
|
||||
#my-account .myaccount_lnk_list {list-style-type:none}
|
||||
#my-account .myaccount_lnk_list li {
|
||||
font-size:13px;
|
||||
line-height:36px
|
||||
}
|
||||
#my-account .myaccount_lnk_list img.icon,
|
||||
#my-account p img.icon {
|
||||
position:relative;
|
||||
top:6px;
|
||||
left:0
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
#orderopc #left_column {display:none}
|
||||
#orderopc #center_column{width:757px}
|
||||
#orderopc #left_column h2 {margin-top:20px}
|
||||
#opc_account_choice {padding:0 15px;}
|
||||
#opc_account_choice .opc_float {
|
||||
float:left;
|
||||
width:350px
|
||||
}
|
||||
#opc_account_choice .opc_float ul {margin:0 0 20px 30px}
|
||||
#new_account_form fieldset {
|
||||
padding:0 0 15px 0;
|
||||
border:1px solid #ccc;
|
||||
background:#f8f8f8
|
||||
}
|
||||
#new_account_form h3 {
|
||||
margin:0 0 15px 0;
|
||||
padding:8px;
|
||||
font-size:14px;
|
||||
color:#fff;
|
||||
text-transform:uppercase;
|
||||
background:url(../img/bg_form_h3.png) repeat-x 0 0 #989898
|
||||
}
|
||||
#center_column #new_account_form p {margin:0; padding:0 0 10px 0;}
|
||||
#new_account_form p.required {color:#222;}
|
||||
#new_account_form p.required sup {color:#990000;}
|
||||
|
||||
#new_account_form p.radio label {
|
||||
padding-right:10px;
|
||||
font-size:14px;
|
||||
}
|
||||
#new_account_form p.radio span,
|
||||
#new_account_form p.text label,
|
||||
#new_account_form p.password label,
|
||||
#new_account_form p.select label,
|
||||
#new_account_form p.select span,
|
||||
#new_account_form p.textarea label {
|
||||
display:inline-block;
|
||||
padding:6px 15px;
|
||||
width:230px;/* 260 */
|
||||
font-size:14px;
|
||||
text-align:right
|
||||
}
|
||||
#new_account_form p.checkbox label {
|
||||
font-size:12px;
|
||||
}
|
||||
#new_account_form p.text input,
|
||||
#new_account_form p.password input,
|
||||
#new_account_form p.select input {
|
||||
padding:0 5px;
|
||||
height:22px;
|
||||
width:360px;/* 370 */
|
||||
border:1px solid #ccc;
|
||||
font-size: 12px;
|
||||
color:#666
|
||||
}
|
||||
#new_account_form p.checkbox input {
|
||||
margin-left:260px;
|
||||
}
|
||||
#new_account_form p.select select {
|
||||
margin-right:10px;
|
||||
border:1px solid #ccc;
|
||||
font-size: 12px;
|
||||
color:#666
|
||||
}
|
||||
#new_account_form p.textarea textarea {
|
||||
height:80px;
|
||||
width:370px;
|
||||
border:1px solid #ccc;
|
||||
font-size: 12px;
|
||||
color:#666
|
||||
}
|
||||
#new_account_form span.form_info,
|
||||
#new_account_form span.inline-infos, #new_account_form p.inline-infos {
|
||||
display:block;
|
||||
margin:5px 0 0 265px!important;
|
||||
color:#666
|
||||
}
|
||||
#new_account_form .id_state, #new_account_form .dni, #new_account_form .postcode {
|
||||
display: none;
|
||||
}
|
||||
#opc_account_errors {
|
||||
margin: 10px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
#center_column #new_account_form p#opc_account_saved {
|
||||
color: green;
|
||||
float: right;
|
||||
margin-right: 20px;
|
||||
padding: 0;
|
||||
}
|
||||
#address_invoice_form {
|
||||
padding: 0px;
|
||||
}
|
||||
@@ -0,0 +1,534 @@
|
||||
/* product desc */
|
||||
/* primary_block ***************************************************************************** */
|
||||
#primary_block {
|
||||
margin-top:15px;
|
||||
}
|
||||
|
||||
/* pb-right-column ***************************************************************************** */
|
||||
#pb-right-column {
|
||||
float:left;
|
||||
width:266px;
|
||||
}
|
||||
|
||||
#pb-right-column #image-block {
|
||||
position:relative;
|
||||
}
|
||||
|
||||
#pb-right-column #image-block img {
|
||||
border:1px solid #cdcdcd;
|
||||
}
|
||||
|
||||
#pb-right-column #image-block #view_full_size {
|
||||
display:block;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
#pb-right-column #image-block #view_full_size .span_link {
|
||||
position:absolute;
|
||||
bottom:10px;
|
||||
left:32%;
|
||||
display:block;
|
||||
padding:0 12px 0 30px;
|
||||
line-height:20px;
|
||||
color:#fff;
|
||||
text-shadow:0 1px 0 #000;
|
||||
text-align:center;
|
||||
text-transform:uppercase;
|
||||
background-image:url(../img/icon/zoom.png);
|
||||
background-repeat:no-repeat;
|
||||
background-position:10px 2px;
|
||||
background-color:#000;
|
||||
background-color:rgba(0,0,0,0.5);
|
||||
border-radius:12px;
|
||||
-moz-border-radius:12px;
|
||||
-webkit-border-radius:12px;
|
||||
}
|
||||
|
||||
#pb-right-column #image-block #view_full_size .span_link img {
|
||||
position:relative;
|
||||
top:3px;
|
||||
left:-3px;
|
||||
border:none;
|
||||
padding-right:2px;
|
||||
}
|
||||
|
||||
/* miniatures */
|
||||
#pb-right-column #views_block {
|
||||
margin-top:10px;
|
||||
width:266px;
|
||||
}
|
||||
|
||||
#thumbs_list {
|
||||
float:left;
|
||||
overflow:hidden;
|
||||
margin-left:4px;
|
||||
width:216px;
|
||||
}
|
||||
|
||||
#thumbs_list ul#thumbs_list_frame {
|
||||
list-style-type:none;
|
||||
padding-left:0;
|
||||
}
|
||||
|
||||
#thumbs_list li {
|
||||
float:left;
|
||||
height:60px;
|
||||
width:72px;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
#thumbs_list li img {
|
||||
margin:0 6px;
|
||||
border:1px solid #cdcdcd;
|
||||
}
|
||||
|
||||
span.view_scroll_spacer {
|
||||
float:left;
|
||||
height:16px;
|
||||
width:21px;
|
||||
}
|
||||
|
||||
#view_scroll_left,#view_scroll_right {
|
||||
float:left;
|
||||
margin-top:20px;
|
||||
padding:0 4px;
|
||||
height:18px;
|
||||
width:9px;
|
||||
text-indent:-3000px;
|
||||
background:url(../img/thumbs_left.gif) no-repeat center center transparent;
|
||||
}
|
||||
|
||||
#view_scroll_right {
|
||||
margin-left:4px;
|
||||
background-image:url(../img/thumbs_right.gif);
|
||||
}
|
||||
|
||||
.resetimg {
|
||||
padding:10px 0 0;
|
||||
}
|
||||
|
||||
/* link list */
|
||||
#usefull_link_block {
|
||||
list-style-type:none;
|
||||
margin-top:20px;
|
||||
}
|
||||
|
||||
#usefull_link_block li {
|
||||
padding:2px 0;
|
||||
}
|
||||
|
||||
#usefull_link_block li.print {
|
||||
padding-left:20px;
|
||||
background:url(../img/icon/print.gif) no-repeat 0 0;
|
||||
}
|
||||
|
||||
#usefull_link_block li.sendtofriend {
|
||||
padding-left:20px;
|
||||
background:url(../img/icon/send_friend.gif) no-repeat 0 0;
|
||||
}
|
||||
|
||||
#usefull_link_block li#left_share_fb {
|
||||
padding-left:20px;
|
||||
background:url(../img/icon/picto_fb.png) no-repeat 0 0;
|
||||
}
|
||||
|
||||
/* pb-left-column ****************************************************************************** */
|
||||
#pb-left-column {
|
||||
float:left;
|
||||
margin-left:14px;
|
||||
width:255px;
|
||||
}
|
||||
|
||||
#pb-left-column h1 {
|
||||
padding-bottom:5px;
|
||||
font-size:18px;
|
||||
}
|
||||
|
||||
#pb-left-column #short_description_block {
|
||||
color:#666;
|
||||
}
|
||||
|
||||
#pb-left-column #short_description_block .buttons_bottom_block {
|
||||
display:none;
|
||||
}
|
||||
|
||||
/* form */
|
||||
#pb-left-column #buy_block {
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
#buy_block p {
|
||||
padding-bottom:10px;
|
||||
}
|
||||
|
||||
#pb-left-column #buy_block label {
|
||||
display:inline-block;
|
||||
width:125px;
|
||||
font-weight:700;
|
||||
font-size:12px;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
.ie7 #pb-left-column #buy_block label {margin-right:5px;float:left}
|
||||
|
||||
/* color_picker */
|
||||
#pb-left-column #color_picker p {
|
||||
padding-bottom:5px;
|
||||
font-weight:700;
|
||||
}
|
||||
|
||||
#attributes fieldset {
|
||||
padding-bottom:10px;
|
||||
}
|
||||
|
||||
#attributes fieldset label {
|
||||
vertical-align:top;
|
||||
}
|
||||
|
||||
#attributes .attribute_list {
|
||||
display:inline-block;
|
||||
}
|
||||
|
||||
.ie7 #attributes .attribute_list {
|
||||
display:inline;
|
||||
zoom:1;
|
||||
float:right
|
||||
}
|
||||
|
||||
#attributes .attribute_list ul{
|
||||
list-style:none
|
||||
}
|
||||
|
||||
#attributes .attribute_list ul li{
|
||||
clear:both
|
||||
}
|
||||
|
||||
#attributes .attribute_list input.attribute_radio{float: left;margin-left: 3px;}
|
||||
#attributes .attribute_list span{float: left;margin-bottom: 5px;margin-left: 3px;}
|
||||
|
||||
.ie7 #attributes .attribute_list span{margin-top:1px}
|
||||
|
||||
#attributes .attribute_list #color_to_pick_list {
|
||||
list-style-type:none;
|
||||
width:125px;
|
||||
}
|
||||
|
||||
#attributes .attribute_list #color_to_pick_list li {
|
||||
float:left;
|
||||
margin:0 8px 8px 0;
|
||||
padding:1px;
|
||||
border:1px solid #ccc;
|
||||
clear:none
|
||||
}
|
||||
|
||||
#attributes .attribute_list #color_to_pick_list li.selected {
|
||||
border:1px solid #000;
|
||||
}
|
||||
|
||||
#attributes .attribute_list #color_to_pick_list a.color_pick {
|
||||
display:block;
|
||||
height:20px;
|
||||
width:20px;
|
||||
}
|
||||
|
||||
.product_attributes {
|
||||
padding:10px 0 0;
|
||||
border-top:1px solid #ccc;
|
||||
}
|
||||
|
||||
/* attributes */
|
||||
#attributes select {
|
||||
width:120px;
|
||||
border:1px solid #cdcdcd;
|
||||
}
|
||||
|
||||
/* quantity_wanted */
|
||||
#quantity_wanted_p input {
|
||||
width:50px;
|
||||
border:1px solid #cdcdcd;
|
||||
}
|
||||
|
||||
/* availability_statut */
|
||||
#availability_statut {
|
||||
margin: 10px 0 0 0;
|
||||
min-width: 255px;
|
||||
}
|
||||
|
||||
#availability_statut span#availability_label,
|
||||
#availability_date_label {
|
||||
display:inline-block;
|
||||
width:125px;
|
||||
font-weight:700;
|
||||
font-size:12px;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
#availability_statut #availability_value {
|
||||
background-color:green;
|
||||
color:#ffffff;
|
||||
text-shadow:none;
|
||||
padding:0 10px;
|
||||
text-transform: uppercase;
|
||||
font-size:10px;
|
||||
font-weight: bold;
|
||||
display:inline-block;
|
||||
}
|
||||
|
||||
#availability_statut #availability_value.warning_inline {
|
||||
background-color:#9B0000;
|
||||
}
|
||||
|
||||
/* prices */
|
||||
.content_prices {
|
||||
margin-top:10px;
|
||||
padding-top:10px;
|
||||
border-top:1px solid #ccc;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
#buy_block p.price {
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.discount {
|
||||
display:none;
|
||||
}
|
||||
|
||||
#buy_block p#old_price {
|
||||
padding-bottom:15px;
|
||||
font-size:14px;
|
||||
text-decoration:line-through;
|
||||
}
|
||||
|
||||
.our_price_display {
|
||||
padding-bottom:10px;
|
||||
font-weight:700;
|
||||
font-size:24px;
|
||||
line-height:18px;
|
||||
color:#9b0000;
|
||||
}
|
||||
|
||||
#reduction_percent,#reduction_amount {
|
||||
display:block;
|
||||
float:right;
|
||||
margin-left:10px;
|
||||
padding:0 0 0 10px;
|
||||
font-weight:700;
|
||||
font-size:12px;
|
||||
color:#fff;
|
||||
background:url(../img/bg_reduction.png) no-repeat 0 0 transparent;
|
||||
}
|
||||
|
||||
#reduction_percent span,#reduction_amount span {
|
||||
display:block;
|
||||
padding:1px 5px 1px 0;
|
||||
background:url(../img/bg_reduction.png) no-repeat 100% 0 transparent;
|
||||
}
|
||||
|
||||
/* online_only */
|
||||
#buy_block p.online_only {
|
||||
font-weight:700;
|
||||
font-size:11px;
|
||||
color:#900;
|
||||
text-align:left;
|
||||
text-transform:uppercase;
|
||||
}
|
||||
|
||||
/* add_to_cart */
|
||||
.content_prices #add_to_cart {
|
||||
position:relative;
|
||||
float:right;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.content_prices #add_to_cart .exclusive,.content_prices #add_to_cart .exclusive_disabled {
|
||||
height: 26px;
|
||||
padding: 5px 7px 5px 15px;
|
||||
}
|
||||
|
||||
@media screen and (-webkit-min-device-pixel-ratio:0) { /*hack Chrome and Safari */
|
||||
|
||||
.content_prices #add_to_cart .exclusive,.content_prices #add_to_cart .exclusive_disabled {
|
||||
padding:6px 7px 4px 15px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.ie9 .content_prices #add_to_cart .exclusive, .ie9 .content_prices #add_to_cart .exclusive_disabled,
|
||||
.ie8 .content_prices #add_to_cart .exclusive, .ie8 .content_prices #add_to_cart .exclusive_disabled,
|
||||
.ie7 .content_prices #add_to_cart .exclusive, .ie7 .content_prices #add_to_cart .exclusive_disabled {
|
||||
padding:8px 7px 4px 15px;
|
||||
line-height:12px;
|
||||
}
|
||||
|
||||
:first-child+html .content_prices #add_to_cart .exclusive {
|
||||
padding:4px 3px 4px 11px;
|
||||
}
|
||||
|
||||
.content_prices #add_to_cart span {
|
||||
z-index:10;
|
||||
display:block;
|
||||
position:absolute;
|
||||
top:0;
|
||||
left:-12px;
|
||||
height:26px;
|
||||
width:26px;
|
||||
background:url(../img/icon/pict_add_cart.png) no-repeat 0 0 transparent;
|
||||
}
|
||||
|
||||
/* */
|
||||
.buttons_bottom_block {
|
||||
clear:both;
|
||||
padding-top:20px;
|
||||
}
|
||||
|
||||
.buttons_bottom_block #wishlist_button {
|
||||
font-weight:700;
|
||||
}
|
||||
|
||||
/* SEND TO FRIEND (pop-in) ##################################################################### */
|
||||
#send_friend_form {
|
||||
}
|
||||
|
||||
#send_friend_form h2 {
|
||||
padding:8px 11px;
|
||||
font-size:12px;
|
||||
color:#fff;
|
||||
text-shadow:0 1px 0 #000;
|
||||
text-transform:uppercase;
|
||||
background:#383838;
|
||||
}
|
||||
|
||||
#send_friend_form .product {
|
||||
margin:20px 10px;
|
||||
}
|
||||
|
||||
#send_friend_form .product img {
|
||||
float:left;
|
||||
margin:0 10px 0 0;
|
||||
border:1px solid #ccc;
|
||||
}
|
||||
|
||||
#send_friend_form .product .product_desc {
|
||||
float:left;
|
||||
width:380px;
|
||||
}
|
||||
|
||||
#send_friend_form .product .product_desc p {
|
||||
padding:0 10px 0 0;
|
||||
color:#333;
|
||||
}
|
||||
|
||||
#send_friend_form .product .product_desc p.product_name {
|
||||
font-size:12px;
|
||||
color:#000;
|
||||
}
|
||||
|
||||
#send_friend_form .send_friend_form_content {
|
||||
margin:0 10px 20px;
|
||||
}
|
||||
|
||||
#send_friend_form .form_container {
|
||||
padding:10px 15px;
|
||||
border:1px solid #ccc;
|
||||
background:#eee;
|
||||
}
|
||||
|
||||
#send_friend_form .form_container p.intro_form {
|
||||
padding-bottom:14px;
|
||||
font-weight:700;
|
||||
font-size:13px;
|
||||
color:#333;
|
||||
}
|
||||
|
||||
#send_friend_form .form_container p.txt_required {
|
||||
padding-bottom:0;
|
||||
color:/* SEND TO FRIEND (pop-in) ##################################################################### */
|
||||
#666;
|
||||
}
|
||||
|
||||
#send_friend_form .form_container .text {
|
||||
padding-bottom:10px;
|
||||
}
|
||||
|
||||
#send_friend_form .form_container .text label {
|
||||
display:inline-block;
|
||||
padding:6px 15px;
|
||||
width:180px;
|
||||
/* 210 */
|
||||
font-size:12px;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
#send_friend_form .form_container .text input {
|
||||
padding:0 5px;
|
||||
height:22px;
|
||||
width:260px;
|
||||
border:1px solid #ccc;
|
||||
font-size:12px;
|
||||
color:#666;
|
||||
}
|
||||
|
||||
#send_friend_form .submit {
|
||||
margin-top:20px;
|
||||
padding-bottom:0;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
/* PACK ##################################################################### */
|
||||
#blockpack {
|
||||
margin-top:20px;
|
||||
padding-top:20px;
|
||||
border-top:1px dotted #999;
|
||||
}
|
||||
|
||||
/* PERSONNALISATION ##################################################################### */
|
||||
.customization_block {
|
||||
}
|
||||
|
||||
.customization_block p.infoCustomizable {
|
||||
margin:10px 0 20px;
|
||||
padding:0 0 0 20px;
|
||||
background:url(../img/icon/infos.gif) no-repeat 0 0 transparent;
|
||||
}
|
||||
|
||||
ul#uploadable_files,ul#text_fields {
|
||||
list-style-type:none;
|
||||
}
|
||||
|
||||
.customizableProductsFile,.customizableProductsText {
|
||||
margin-bottom:20px;
|
||||
padding-bottom:10px;
|
||||
border-bottom:1px dotted #ccc;
|
||||
}
|
||||
|
||||
.customizationUploadLine {
|
||||
padding-bottom:10px;
|
||||
}
|
||||
.customizationUploadBrowse img + a {
|
||||
position: relative;
|
||||
top: -51px;
|
||||
}
|
||||
.customizationUploadLine label {
|
||||
display:inline-block;
|
||||
width:150px;
|
||||
vertical-align:top;
|
||||
}
|
||||
|
||||
.customizationUploadLine textarea {
|
||||
height:50px;
|
||||
width:300px;
|
||||
border:1px solid #ccc;
|
||||
}
|
||||
|
||||
#customizedDatas {
|
||||
float:right;
|
||||
}
|
||||
|
||||
.accessories_block div ul li a {
|
||||
display:inline-block;
|
||||
}
|
||||
|
||||
.accessories_block div ul li .s_title_block a, .accessories_block div ul li .s_title_block span {
|
||||
font-weight:bold;
|
||||
}
|
||||
@@ -0,0 +1,148 @@
|
||||
ul#product_list {
|
||||
list-style-type: none
|
||||
}
|
||||
#product_list li {
|
||||
margin-bottom: 14px;
|
||||
padding: 12px 8px;
|
||||
border: 1px solid #eee;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px
|
||||
}
|
||||
#product_list li a {
|
||||
color: #374853;
|
||||
text-decoration: none
|
||||
}
|
||||
#product_list li .left_block {
|
||||
float:left;
|
||||
padding-top:58px;
|
||||
width:15px
|
||||
}
|
||||
#product_list li .left_block .compare label {display:none;}
|
||||
|
||||
#product_list li p.compare input {
|
||||
vertical-align: text-bottom
|
||||
}
|
||||
#product_list li .center_block {
|
||||
float: left;
|
||||
padding:0 7px;
|
||||
width: 342px;/* 356 */
|
||||
border-right:1px dotted #ccc
|
||||
}
|
||||
#product_list a.product_img_link {
|
||||
overflow:hidden;
|
||||
position:relative;
|
||||
float: left;
|
||||
display:block;
|
||||
margin-right: 14px;
|
||||
border: 1px solid #ccc
|
||||
}
|
||||
#product_list a.product_img_link img {
|
||||
display: block;
|
||||
vertical-align: bottom
|
||||
}
|
||||
#product_list li span.new {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
right:-30px;
|
||||
padding: 1px 4px;
|
||||
width: 101px;
|
||||
font-size:10px;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
-moz-transform: rotate(45deg);
|
||||
-webkit-transform: rotate(45deg);
|
||||
-o-transform:rotate(45deg);
|
||||
background-color: #990000;
|
||||
transform: rotate(45deg);
|
||||
-ms-transform: rotate(45deg); /* Newer browsers */
|
||||
}
|
||||
|
||||
.ie8 #product_list li span.new{top:111px;right:0;width:94%}
|
||||
.ie7 #product_list li span.new {top:111px;right:0;width:94%}
|
||||
#product_list li h3 {
|
||||
padding:0 0 10px 0;
|
||||
font-size:13px;
|
||||
color:#000
|
||||
}
|
||||
#product_list li a {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
}
|
||||
#product_list li p.product_desc {
|
||||
overflow: hidden;
|
||||
padding:0;
|
||||
line-height:16px;
|
||||
}
|
||||
#product_list li p.product_desc,
|
||||
#product_list li p.product_desc a {
|
||||
color:#666;
|
||||
}
|
||||
|
||||
#product_list li .right_block {
|
||||
position:relative;
|
||||
float: left;
|
||||
width: 145px;
|
||||
text-align: right
|
||||
}
|
||||
#product_list li .discount, ul#product_list li .on_sale, ul#product_list li .online_only {
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
color: #990000;
|
||||
text-transform: uppercase
|
||||
}
|
||||
#product_list li .discount {
|
||||
position:absolute;
|
||||
top:0;
|
||||
right:0;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
padding: 1px 5px;
|
||||
font-size: 10px;
|
||||
color: #fff;
|
||||
text-transform: uppercase;
|
||||
background: none repeat scroll 0 0 #9B0000
|
||||
}
|
||||
#product_list li .online_only {
|
||||
margin:0 0 10px 0
|
||||
}
|
||||
#product_list li .content_price {
|
||||
margin:26px 0 15px 0;
|
||||
}
|
||||
#product_list li .price {
|
||||
display: block;
|
||||
margin-bottom: 15px;
|
||||
font-weight:bold;
|
||||
font-size: 18px;
|
||||
color:#990000
|
||||
}
|
||||
#product_list li span.availability {
|
||||
color: #488C40
|
||||
}
|
||||
#product_list li span.warning_inline {
|
||||
color: red
|
||||
}
|
||||
#product_list li .ajax_add_to_cart_button {
|
||||
padding-left: 20px
|
||||
}
|
||||
#product_list li .ajax_add_to_cart_button span {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: -1px;
|
||||
left: -12px;
|
||||
height: 26px;
|
||||
width: 26px;
|
||||
background: url(../img/icon/pict_add_cart.png) no-repeat 0 0 transparent
|
||||
}
|
||||
#product_list li .lnk_view {
|
||||
display: block;
|
||||
margin-top:15px;
|
||||
padding:0 10px;
|
||||
border:none;
|
||||
font-weight:bold;
|
||||
color:#0088CC;
|
||||
background:url(../img/arrow_right_1.png) no-repeat 100% 4px transparent
|
||||
}
|
||||
#product_list li .lnk_view:hover {text-decoration:underline}
|
||||
@@ -0,0 +1,2 @@
|
||||
body { direction: rtl !important; }
|
||||
#page { text-align: right !important; }
|
||||
@@ -0,0 +1,148 @@
|
||||
|
||||
/*TMP*/
|
||||
#scenes .cluetip span{
|
||||
background:transparent url(../img/icon/cible.gif) no-repeat scroll center center;
|
||||
color:black;
|
||||
display:block;
|
||||
font-size:1.1em;
|
||||
font-weight:bold;
|
||||
height:23px;
|
||||
padding-top:5px;
|
||||
text-align:center;
|
||||
width:23px;
|
||||
}
|
||||
/*TMP*/
|
||||
.thumbs_banner{
|
||||
margin:10px auto;
|
||||
padding:2px 0;
|
||||
height: 60px !important;
|
||||
width:100%;
|
||||
border-top:1px solid #ccc;
|
||||
border-bottom:1px solid #ccc;
|
||||
}
|
||||
|
||||
.thumbs_banner .space-keeper{
|
||||
width:21px;
|
||||
float:left;
|
||||
display:block;
|
||||
height:100%;
|
||||
}
|
||||
|
||||
.thumbs_banner .space-keeper a.prev{
|
||||
display:none;
|
||||
width:21px;
|
||||
text-align:center;
|
||||
font-size:1.5em;
|
||||
text-decoration:none;
|
||||
background:url(../img/icon/serial_scroll_left.gif) no-repeat 0 0 #eee;
|
||||
}
|
||||
#scenes_list{
|
||||
overflow:hidden;
|
||||
float:left;
|
||||
width:478px;
|
||||
}
|
||||
#scenes_list ul{
|
||||
list-style-type:none;
|
||||
}
|
||||
|
||||
#scenes_list li{
|
||||
float:left;
|
||||
}
|
||||
|
||||
#scenes_list a{
|
||||
display:block;
|
||||
}
|
||||
|
||||
.thumbs_banner a.next {
|
||||
float:left;
|
||||
display:block;
|
||||
width:21px;
|
||||
text-align:center;
|
||||
font-size:1.5em;
|
||||
text-decoration:none;
|
||||
background:url(../img/icon/serial_scroll_right.gif) no-repeat 0 0 #ddd;
|
||||
}
|
||||
|
||||
/* Cluetip design ****************************************************************************** */
|
||||
#scenes .screen_scene {
|
||||
margin:0 auto;
|
||||
}
|
||||
|
||||
#scenes a.cluetip{
|
||||
display:block;
|
||||
position:absolute;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.cluetip-product_scene {
|
||||
padding:10px;
|
||||
border:7px solid #999;
|
||||
-moz-border-radius:3px;
|
||||
-webkit-border-radius:3px;
|
||||
border-radius:3px;
|
||||
text-align:left;
|
||||
background:#fff;
|
||||
opacity:0.95;
|
||||
}
|
||||
|
||||
.cluetip-product_scene #cluetip-close{
|
||||
text-align:right;
|
||||
float:right;
|
||||
}
|
||||
|
||||
.cluetip-product_scene img {
|
||||
float:left;
|
||||
margin-right:10px;
|
||||
border:1px solid #ccc
|
||||
}
|
||||
.cluetip-product_scene .title_block {
|
||||
display:inline-block;
|
||||
margin-bottom:5px;
|
||||
padding:0 !important;
|
||||
font-size:12px;
|
||||
}
|
||||
|
||||
.cluetip-product_scene .clear {margin:0; padding:0}
|
||||
.cluetip-product_scene .clear a {
|
||||
/*float:left;*/
|
||||
margin-top:2px;
|
||||
}
|
||||
|
||||
.cluetip-product_scene p.description{
|
||||
float:left;
|
||||
padding:0;
|
||||
width:140px;
|
||||
color:#666
|
||||
}
|
||||
|
||||
.cluetip-product_scene div.prices{
|
||||
float:right;
|
||||
position:relative;
|
||||
width:65px;
|
||||
text-align:right;
|
||||
}
|
||||
.cluetip-product_scene .new {
|
||||
position:absolute;
|
||||
top:0;
|
||||
right:0;
|
||||
display: inline-block;
|
||||
padding: 1px 5px;
|
||||
font-weight: bold;
|
||||
font-size: 10px;
|
||||
color: #fff;
|
||||
text-transform: uppercase;
|
||||
background: none repeat scroll 0 0 #9B0000
|
||||
}
|
||||
.cluetip-product_scene .price{
|
||||
padding-top:18px;
|
||||
font-weight:bold;
|
||||
font-size:13px;
|
||||
color:#990000
|
||||
}
|
||||
.cluetip-product_scene .on_sale, .cluetip-product_scene .discount {
|
||||
display:block;
|
||||
font-weight:bold;
|
||||
color:#DA0F00;
|
||||
text-transform:uppercase;
|
||||
}
|
||||
/* END Cluetip design */
|
||||
@@ -0,0 +1,38 @@
|
||||
#sitemap_content {margin-left: 20px}
|
||||
#sitemap_content .sitemap_block h3,
|
||||
#sitemap_content .categTree h3 {margin: 20px 0 0 0}
|
||||
|
||||
#sitemap_content div.sitemap_block {
|
||||
float: left;
|
||||
min-height: 120px;
|
||||
padding: 0;
|
||||
width: 33%
|
||||
}
|
||||
#sitemap_content div.sitemap_block ul {list-style-type:none}
|
||||
#sitemap_content div.sitemap_block li a {
|
||||
display: block;
|
||||
padding: 2px 0 2px 10px;
|
||||
color: #333;
|
||||
background: url(../img/arrow_right_2.png) no-repeat 0 4px transparent
|
||||
}
|
||||
|
||||
#listpage_content {margin: 50px 0 20px 20px;}
|
||||
#listpage_content div.categTree {
|
||||
float: left;
|
||||
width: 33%
|
||||
}
|
||||
#listpage_content div.tree_top {
|
||||
padding: 3px 0 5px 24px;
|
||||
background: url(../img/sitemap-top.gif) no-repeat -1px -3px transparent
|
||||
}
|
||||
#listpage_content ul {list-style-type:none}
|
||||
#listpage_content ul.tree li {
|
||||
margin-left: 11px;
|
||||
padding-left: 20px;
|
||||
border-left: 1px dotted #999;
|
||||
background: url(../img/sitemap-horizontal.png) no-repeat left 10px transparent
|
||||
}
|
||||
#listpage_content ul.tree li.last {
|
||||
border: medium none;
|
||||
background: url(../img/sitemap-last.gif) no-repeat -12px -2px transparent
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
#stores #center_colum label {
|
||||
display:inline-block;
|
||||
width:150px;
|
||||
font-weight:bold;
|
||||
text-align:right
|
||||
}
|
||||
input#addressInput {
|
||||
padding:2px 5px;
|
||||
width:300px;
|
||||
border:1px solid #ccc
|
||||
}
|
||||
select#radiusSelect {
|
||||
margin: 0 5px 0 0;
|
||||
width:50px;
|
||||
border:1px solid #ccc
|
||||
}
|
||||
|
||||
#stores_loader {
|
||||
display: none;
|
||||
margin-left: 5px
|
||||
}
|
||||
|
||||
#locationSelect {
|
||||
visibility: hidden;
|
||||
width: 400px;
|
||||
border:1px solid #ccc
|
||||
}
|
||||
|
||||
#stores #center_column p .button {float:right}
|
||||
|
||||
#map {
|
||||
margin:15px auto;
|
||||
height:375px;
|
||||
width:535px
|
||||
}
|
||||
|
||||
#stores-table {border-bottom:1px solid #999}
|
||||
#stores-table tr:nth-child(odd) {background-color: #f3f3f3;}
|
||||
#stores-table td {
|
||||
border-top:1px solid #ccc;
|
||||
border-bottom:none
|
||||
}
|
||||
#stores-table td.distance {border-right:1px solid #999}
|
||||
@@ -0,0 +1,86 @@
|
||||
{*
|
||||
* 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
|
||||
*}
|
||||
{capture name=path}<a href="{$link->getPageLink('my-account', true)|escape:'html'}">{l s='My account'}</a><span class="navigation-pipe">{$navigationPipe}</span>{l s='My vouchers'}{/capture}
|
||||
{include file="$tpl_dir./breadcrumb.tpl"}
|
||||
|
||||
<h1>{l s='My vouchers'}</h1>
|
||||
|
||||
{if isset($cart_rules) && count($cart_rules) && $nb_cart_rules}
|
||||
<table class="discount std table_block">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="discount_code first_item">{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">{l s='Expiration date'}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$cart_rules 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.code}</td>
|
||||
<td class="discount_description">{$discountDetail.name}</td>
|
||||
<td class="discount_quantity">{$discountDetail.quantity_for_user}</td>
|
||||
<td class="discount_value">
|
||||
{if $discountDetail.id_discount_type == 1}
|
||||
{$discountDetail.value|escape:'html':'UTF-8'}%
|
||||
{elseif $discountDetail.id_discount_type == 2}
|
||||
{convertPrice price=$discountDetail.value} ({if $discountDetail.reduction_tax == 1}{l s='Tax included'}{else}{l s='Tax excluded'}{/if})
|
||||
{elseif $discountDetail.id_discount_type == 3}
|
||||
{l s='Free shipping'}
|
||||
{else}
|
||||
-
|
||||
{/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" /> {l s='Yes'}
|
||||
{else}
|
||||
<img src="{$img_dir}icon/no.gif" alt="{l s='No'}" class="icon" valign="middle" /> {l s='No'}
|
||||
{/if}
|
||||
</td>
|
||||
<td class="discount_expiration_date">{dateFormat date=$discountDetail.date_to}</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
{else}
|
||||
<p class="warning">{l s='You do not have any vouchers.'}</p>
|
||||
{/if}
|
||||
|
||||
<ul class="footer_links">
|
||||
<li><a href="{$link->getPageLink('my-account', true)|escape:'html'}"><img src="{$img_dir}icon/my-account.gif" alt="" class="icon" /> {l s='Back to your account'}</a></li>
|
||||
<li class="f_right"><a href="{$base_dir}"><img src="{$img_dir}icon/home.gif" alt="" class="icon" /> {l s='Home'}</a></li>
|
||||
</ul>
|
||||
@@ -0,0 +1,38 @@
|
||||
{*
|
||||
* 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($errors) && $errors}
|
||||
<div class="error">
|
||||
<p>{if $errors|@count > 1}{l s='There are %d errors' sprintf=$errors|@count}{else}{l s='There is %d error' sprintf=$errors|@count}{/if}</p>
|
||||
<ol>
|
||||
{foreach from=$errors key=k item=error}
|
||||
<li>{$error}</li>
|
||||
{/foreach}
|
||||
</ol>
|
||||
{if isset($smarty.server.HTTP_REFERER) && !strstr($request_uri, 'authentication') && preg_replace('#^https?://[^/]+/#', '/', $smarty.server.HTTP_REFERER) != $request_uri}
|
||||
<p class="lnk"><a href="{$smarty.server.HTTP_REFERER|escape:'html':'UTF-8'|secureReferrer}" title="{l s='Back'}">« {l s='Back'}</a></p>
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
@@ -0,0 +1,45 @@
|
||||
{*
|
||||
* 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 !$content_only}
|
||||
</div>
|
||||
|
||||
<!-- Right -->
|
||||
<div id="right_column" class="column grid_2 omega">
|
||||
{$HOOK_RIGHT_COLUMN}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
<div id="footer" class="grid_9 alpha omega clearfix">
|
||||
{$HOOK_FOOTER}
|
||||
{if $PS_ALLOW_MOBILE_DEVICE}
|
||||
<p class="center clearBoth"><a href="{$link->getPageLink('index', true)}?mobile_theme_ok">{l s='Browse the mobile site'}</a></p>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,114 @@
|
||||
{*
|
||||
* 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
|
||||
*}
|
||||
|
||||
{capture name=path}{l s='Guest Tracking'}{/capture}
|
||||
{include file="./breadcrumb.tpl"}
|
||||
|
||||
<h1>{l s='Guest Tracking'}</h1>
|
||||
|
||||
{if isset($order_collection)}
|
||||
{foreach $order_collection as $order}
|
||||
{assign var=order_state value=$order->getCurrentState()}
|
||||
{assign var=invoice value=$order->invoice}
|
||||
{assign var=order_history value=$order->order_history}
|
||||
{assign var=carrier value=$order->carrier}
|
||||
{assign var=address_invoice value=$order->address_invoice}
|
||||
{assign var=address_delivery value=$order->address_delivery}
|
||||
{assign var=inv_adr_fields value=$order->inv_adr_fields}
|
||||
{assign var=dlv_adr_fields value=$order->dlv_adr_fields}
|
||||
{assign var=invoiceAddressFormatedValues value=$order->invoiceAddressFormatedValues}
|
||||
{assign var=deliveryAddressFormatedValues value=$order->deliveryAddressFormatedValues}
|
||||
{assign var=currency value=$order->currency}
|
||||
{assign var=discounts value=$order->discounts}
|
||||
{assign var=invoiceState value=$order->invoiceState}
|
||||
{assign var=deliveryState value=$order->deliveryState}
|
||||
{assign var=products value=$order->products}
|
||||
{assign var=customizedDatas value=$order->customizedDatas}
|
||||
{assign var=HOOK_ORDERDETAILDISPLAYED value=$order->hook_orderdetaildisplayed}
|
||||
{if isset($order->total_old)}
|
||||
{assign var=total_old value=$order->total_old}
|
||||
{/if}
|
||||
{if isset($order->followup)}
|
||||
{assign var=followup value=$order->followup}
|
||||
{/if}
|
||||
|
||||
<div id="block-history">
|
||||
<div id="block-order-detail" class="std" style="zoom:1">
|
||||
{include file="./order-detail.tpl"}
|
||||
</div>
|
||||
</div>
|
||||
{/foreach}
|
||||
|
||||
<h2 id="guestToCustomer">{l s='For more advantages...'}</h2>
|
||||
|
||||
{include file="$tpl_dir./errors.tpl"}
|
||||
|
||||
{if isset($transformSuccess)}
|
||||
<p class="success">{l s='Your guest account has been successfully transformed into a customer account. You can now login as a registered shopper. '} <a href="{$link->getPageLink('authentication', true)|escape:'html'}">{l s='page.'}</a></p>
|
||||
{else}
|
||||
<form method="post" action="{$action|escape:'html':'UTF-8'}#guestToCustomer" class="std">
|
||||
<fieldset class="description_box">
|
||||
<p class="bold">{l s='Transform your guest account into a customer account and enjoy:'}</p>
|
||||
<ul class="bullet">
|
||||
<li>{l s='Personalized and secure access'}</li>
|
||||
<li>{l s='Fast and easy checkout'}</li>
|
||||
<li>{l s='Easier merchandise return'}</li>
|
||||
</ul>
|
||||
<p class="text">
|
||||
<label>{l s='Set your password:'}</label>
|
||||
<input type="password" name="password" />
|
||||
</p>
|
||||
|
||||
<input type="hidden" name="id_order" value="{if isset($order->id)}{$order->id}{else}{if isset($smarty.get.id_order)}{$smarty.get.id_order|escape:'html':'UTF-8'}{else}{if isset($smarty.post.id_order)}{$smarty.post.id_order|escape:'html':'UTF-8'}{/if}{/if}{/if}" />
|
||||
<input type="hidden" name="order_reference" value="{if isset($smarty.get.order_reference)}{$smarty.get.order_reference|escape:'html':'UTF-8'}{else}{if isset($smarty.post.order_reference)}{$smarty.post.order_reference|escape:'html':'UTF-8'}{/if}{/if}" />
|
||||
<input type="hidden" name="email" value="{if isset($smarty.get.email)}{$smarty.get.email|escape:'html':'UTF-8'}{else}{if isset($smarty.post.email)}{$smarty.post.email|escape:'html':'UTF-8'}{/if}{/if}" />
|
||||
|
||||
<p class="center"><input type="submit" class="exclusive_large" name="submitTransformGuestToCustomer" value="{l s='Send'}" /></p>
|
||||
</fieldset>
|
||||
</form>
|
||||
{/if}
|
||||
{else}
|
||||
{include file="$tpl_dir./errors.tpl"}
|
||||
{if isset($show_login_link) && $show_login_link}
|
||||
<p><img src="{$img_dir}icon/userinfo.gif" alt="{l s='Information'}" class="icon" /><a href="{$link->getPageLink('my-account', true)|escape:'html'}">{l s='Click here to login to your customer account.'}</a><br /><br /></p>
|
||||
{/if}
|
||||
<form method="post" action="{$action|escape:'html':'UTF-8'}" class="std">
|
||||
<fieldset class="description_box">
|
||||
<p>{l s='To track your order, please enter the following information:'}</p>
|
||||
<p class="text">
|
||||
<label>{l s='Order Reference:'} </label>
|
||||
<input type="text" name="order_reference" value="{if isset($smarty.get.id_order)}{$smarty.get.id_order|escape:'html':'UTF-8'}{else}{if isset($smarty.post.id_order)}{$smarty.post.id_order|escape:'html':'UTF-8'}{/if}{/if}" size="8" />
|
||||
<i>{l s='For example: QIIXJXNUI or QIIXJXNUI#1'}</i>
|
||||
</p>
|
||||
|
||||
<p class="text">
|
||||
<label>{l s='Email'}</label>
|
||||
<input type="text" name="email" value="{if isset($smarty.get.email)}{$smarty.get.email|escape:'html':'UTF-8'}{else}{if isset($smarty.post.email)}{$smarty.post.email|escape:'html':'UTF-8'}{/if}{/if}" />
|
||||
</p>
|
||||
|
||||
<p class="center"><input type="submit" class="button" name="submitGuestTracking" value="{l s='Send'}" /></p>
|
||||
</fieldset>
|
||||
</form>
|
||||
{/if}
|
||||
@@ -0,0 +1,89 @@
|
||||
{*
|
||||
* 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
|
||||
*}
|
||||
|
||||
{capture name=path}<a href="{$link->getPageLink('my-account', true)|escape:'html'}">{l s='My account'}</a><span class="navigation-pipe">{$navigationPipe}</span>{l s='Order history'}{/capture}
|
||||
{include file="$tpl_dir./breadcrumb.tpl"}
|
||||
{include file="$tpl_dir./errors.tpl"}
|
||||
|
||||
<h1>{l s='Order history'}</h1>
|
||||
<p>{l s='Here are the orders you\'ve placed since your account was created.'}</p>
|
||||
|
||||
{if $slowValidation}<p class="warning">{l s='If you have just placed an order, it may take a few minutes for it to be validated. Please refresh this page if your order is missing.'}</p>{/if}
|
||||
|
||||
<div class="block-center" id="block-history">
|
||||
{if $orders && count($orders)}
|
||||
<table id="order-list" class="std">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="first_item">{l s='Order reference'}</th>
|
||||
<th class="item">{l s='Date'}</th>
|
||||
<th class="item">{l s='Total price'}</th>
|
||||
<th class="item">{l s='Payment: '}</th>
|
||||
<th class="item">{l s='Status'}</th>
|
||||
<th class="item">{l s='Invoice'}</th>
|
||||
<th class="last_item" style="width:65px"> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$orders item=order 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="history_link bold">
|
||||
{if isset($order.invoice) && $order.invoice && isset($order.virtual) && $order.virtual}<img src="{$img_dir}icon/download_product.gif" class="icon" alt="{l s='Products to download'}" title="{l s='Products to download'}" />{/if}
|
||||
<a class="color-myaccount" href="javascript:showOrder(1, {$order.id_order|intval}, '{$link->getPageLink('order-detail', true)|escape:'html'}');">{Order::getUniqReferenceOf($order.id_order)}</a>
|
||||
</td>
|
||||
<td class="history_date bold">{dateFormat date=$order.date_add full=0}</td>
|
||||
<td class="history_price"><span class="price">{displayPrice price=$order.total_paid currency=$order.id_currency no_utf8=false convert=false}</span></td>
|
||||
<td class="history_method">{$order.payment|escape:'html':'UTF-8'}</td>
|
||||
<td class="history_state">{if isset($order.order_state)}{$order.order_state|escape:'html':'UTF-8'}{/if}</td>
|
||||
<td class="history_invoice">
|
||||
{if (isset($order.invoice) && $order.invoice && isset($order.invoice_number) && $order.invoice_number) && isset($invoiceAllowed) && $invoiceAllowed == true}
|
||||
<a href="{$link->getPageLink('pdf-invoice', true, NULL, "id_order={$order.id_order}")|escape:'html'}" title="{l s='Invoice'}" class="_blank"><img src="{$img_dir}icon/pdf.gif" alt="{l s='Invoice'}" class="icon" /></a>
|
||||
<a href="{$link->getPageLink('pdf-invoice', true, NULL, "id_order={$order.id_order}")|escape:'html'}" title="{l s='Invoice'}" class="_blank">{l s='PDF'}</a>
|
||||
{else}-{/if}
|
||||
</td>
|
||||
<td class="history_detail">
|
||||
<a class="color-myaccount" href="javascript:showOrder(1, {$order.id_order|intval}, '{$link->getPageLink('order-detail', true)|escape:'html'}');">{l s='details'}</a>
|
||||
{if isset($opc) && $opc}
|
||||
<a href="{$link->getPageLink('order-opc', true, NULL, "submitReorder&id_order={$order.id_order}")|escape:'html'}" title="{l s='Reorder'}">
|
||||
{else}
|
||||
<a href="{$link->getPageLink('order', true, NULL, "submitReorder&id_order={$order.id_order}")|escape:'html'}" title="{l s='Reorder'}">
|
||||
{/if}
|
||||
<img src="{$img_dir}arrow_rotate_anticlockwise.png" alt="{l s='Reorder'}" title="{l s='Reorder'}" class="icon" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
<div id="block-order-detail" class="hidden"> </div>
|
||||
{else}
|
||||
<p class="warning">{l s='You have not placed any orders.'}</p>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<ul class="footer_links clearfix">
|
||||
<li><a href="{$link->getPageLink('my-account', true)|escape:'html'}"><img src="{$img_dir}icon/my-account.gif" alt="" class="icon" /> {l s='Back to Your Account'}</a></li>
|
||||
<li class="f_right"><a href="{$base_dir}"><img src="{$img_dir}icon/home.gif" alt="" class="icon" /> {l s='Home'}</a></li>
|
||||
</ul>
|
||||
@@ -0,0 +1,132 @@
|
||||
{*
|
||||
* 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
|
||||
*}
|
||||
|
||||
{capture name=path}<a href="{$link->getPageLink('my-account', true)|escape:'html'}">{l s='My account'}</a><span class="navigation-pipe">{$navigationPipe}</span>{l s='Your personal information'}{/capture}
|
||||
{include file="$tpl_dir./breadcrumb.tpl"}
|
||||
|
||||
<h1>{l s='Your personal information'}</h1>
|
||||
|
||||
{include file="$tpl_dir./errors.tpl"}
|
||||
|
||||
{if isset($confirmation) && $confirmation}
|
||||
<p class="success">
|
||||
{l s='Your personal information has been successfully updated.'}
|
||||
{if isset($pwd_changed)}<br />{l s='Your password has been sent to your email:'} {$email}{/if}
|
||||
</p>
|
||||
{else}
|
||||
<h3>{l s='Please be sure to update your personal information if it has changed.'}</h3>
|
||||
<p class="required"><sup>*</sup>{l s='Required field'}</p>
|
||||
<form action="{$link->getPageLink('identity', true)|escape:'html'}" method="post" class="std">
|
||||
<fieldset>
|
||||
<p class="radio">
|
||||
<span>{l s='Title'}</span>
|
||||
{foreach from=$genders key=k item=gender}
|
||||
<input type="radio" name="id_gender" id="id_gender{$gender->id}" value="{$gender->id|intval}" {if isset($smarty.post.id_gender) && $smarty.post.id_gender == $gender->id}checked="checked"{/if} />
|
||||
<label for="id_gender{$gender->id}" class="top">{$gender->name}</label>
|
||||
{/foreach}
|
||||
</p>
|
||||
<p class="required text">
|
||||
<label for="firstname">{l s='First name'} <sup>*</sup></label>
|
||||
<input type="text" id="firstname" name="firstname" value="{$smarty.post.firstname}" />
|
||||
</p>
|
||||
<p class="required text">
|
||||
<label for="lastname">{l s='Last name'} <sup>*</sup></label>
|
||||
<input type="text" name="lastname" id="lastname" value="{$smarty.post.lastname}" />
|
||||
</p>
|
||||
<p class="required text">
|
||||
<label for="email">{l s='Email'} <sup>*</sup></label>
|
||||
<input type="text" name="email" id="email" value="{$smarty.post.email}" />
|
||||
</p>
|
||||
<p class="required text">
|
||||
<label for="old_passwd">{l s='Current Password'} <sup>*</sup></label>
|
||||
<input type="password" name="old_passwd" id="old_passwd" />
|
||||
</p>
|
||||
<p class="password">
|
||||
<label for="passwd">{l s='New Password'}</label>
|
||||
<input type="password" name="passwd" id="passwd" />
|
||||
</p>
|
||||
<p class="password">
|
||||
<label for="confirmation">{l s='Confirmation'}</label>
|
||||
<input type="password" name="confirmation" id="confirmation" />
|
||||
</p>
|
||||
<p class="select">
|
||||
<label>{l s='Date of Birth'}</label>
|
||||
<select name="days" id="days">
|
||||
<option value="">-</option>
|
||||
{foreach from=$days item=v}
|
||||
<option value="{$v}" {if ($sl_day == $v)}selected="selected"{/if}>{$v} </option>
|
||||
{/foreach}
|
||||
</select>
|
||||
{*
|
||||
{l s='January'}
|
||||
{l s='February'}
|
||||
{l s='March'}
|
||||
{l s='April'}
|
||||
{l s='May'}
|
||||
{l s='June'}
|
||||
{l s='July'}
|
||||
{l s='August'}
|
||||
{l s='September'}
|
||||
{l s='October'}
|
||||
{l s='November'}
|
||||
{l s='December'}
|
||||
*}
|
||||
<select id="months" name="months">
|
||||
<option value="">-</option>
|
||||
{foreach from=$months key=k item=v}
|
||||
<option value="{$k}" {if ($sl_month == $k)}selected="selected"{/if}>{l s=$v} </option>
|
||||
{/foreach}
|
||||
</select>
|
||||
<select id="years" name="years">
|
||||
<option value="">-</option>
|
||||
{foreach from=$years item=v}
|
||||
<option value="{$v}" {if ($sl_year == $v)}selected="selected"{/if}>{$v} </option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</p>
|
||||
{if $newsletter}
|
||||
<p class="checkbox">
|
||||
<input type="checkbox" id="newsletter" name="newsletter" value="1" {if isset($smarty.post.newsletter) && $smarty.post.newsletter == 1} checked="checked"{/if} autocomplete="off"/>
|
||||
<label for="newsletter">{l s='Sign up for our newsletter!'}</label>
|
||||
</p>
|
||||
<p class="checkbox">
|
||||
<input type="checkbox" name="optin" id="optin" value="1" {if isset($smarty.post.optin) && $smarty.post.optin == 1} checked="checked"{/if} autocomplete="off"/>
|
||||
<label for="optin">{l s='Receive special offers from our partners!'}</label>
|
||||
</p>
|
||||
{/if}
|
||||
<p class="submit">
|
||||
<input type="submit" class="button" name="submitIdentity" value="{l s='Save'}" />
|
||||
</p>
|
||||
<p id="security_informations">
|
||||
{l s='[Insert customer data privacy clause here, if applicable]'}
|
||||
</p>
|
||||
</fieldset>
|
||||
</form>
|
||||
{/if}
|
||||
|
||||
<ul class="footer_links">
|
||||
<li><a href="{$link->getPageLink('my-account', true)}"><img src="{$img_dir}icon/my-account.gif" alt="" class="icon" /></a><a href="{$link->getPageLink('my-account', true)|escape:'html'}">{l s='Back to your account'}</a></li>
|
||||
<li class="f_right"><a href="{$base_dir}"><img src="{$img_dir}icon/home.gif" alt="" class="icon" /> {l s='Home'}</a></li>
|
||||
</ul>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 928 B |
|
After Width: | Height: | Size: 928 B |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 155 B |
|
After Width: | Height: | Size: 155 B |
|
After Width: | Height: | Size: 608 B |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 415 B |
|
After Width: | Height: | Size: 240 B |
|
After Width: | Height: | Size: 314 B |
|
After Width: | Height: | Size: 190 B |
|
After Width: | Height: | Size: 150 B |
|
After Width: | Height: | Size: 572 B |
|
After Width: | Height: | Size: 218 B |
|
After Width: | Height: | Size: 133 B |
|
After Width: | Height: | Size: 254 B |
|
After Width: | Height: | Size: 141 B |
|
After Width: | Height: | Size: 243 B |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 212 B |
|
After Width: | Height: | Size: 141 B |
|
After Width: | Height: | Size: 232 B |
|
After Width: | Height: | Size: 274 B |
|
After Width: | Height: | Size: 361 B |
|
After Width: | Height: | Size: 394 B |
|
After Width: | Height: | Size: 380 B |
|
After Width: | Height: | Size: 375 B |
|
After Width: | Height: | Size: 744 B |
|
After Width: | Height: | Size: 261 B |
|
After Width: | Height: | Size: 207 B |
|
After Width: | Height: | Size: 852 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 357 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 966 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 960 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 777 B |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 190 B |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 85 B |
|
After Width: | Height: | Size: 710 B |
|
After Width: | Height: | Size: 56 B |
|
After Width: | Height: | Size: 64 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 932 B |
|
After Width: | Height: | Size: 1.2 KiB |