// remove default theme
@@ -1,44 +0,0 @@
|
||||
{*
|
||||
* 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>
|
||||
@@ -1,252 +0,0 @@
|
||||
{*
|
||||
* 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
|
||||
*}
|
||||
|
||||
<script type="text/javascript">
|
||||
// <![CDATA[
|
||||
var idSelectedCountry = {if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{else}{if isset($address->id_state)}{$address->id_state|intval}{else}false{/if}{/if};
|
||||
var countries = new Array();
|
||||
var countriesNeedIDNumber = new Array();
|
||||
var countriesNeedZipCode = new Array();
|
||||
{foreach from=$countries item='country'}
|
||||
{if isset($country.states) && $country.contains_states}
|
||||
countries[{$country.id_country|intval}] = new Array();
|
||||
{foreach from=$country.states item='state' name='states'}
|
||||
countries[{$country.id_country|intval}].push({ldelim}'id' : '{$state.id_state}', 'name' : '{$state.name|addslashes}'{rdelim});
|
||||
{/foreach}
|
||||
{/if}
|
||||
{if $country.need_identification_number}
|
||||
countriesNeedIDNumber.push({$country.id_country|intval});
|
||||
{/if}
|
||||
{if isset($country.need_zip_code)}
|
||||
countriesNeedZipCode[{$country.id_country|intval}] = {$country.need_zip_code};
|
||||
{/if}
|
||||
{/foreach}
|
||||
$(function(){ldelim}
|
||||
$('.id_state option[value={if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{else}{if isset($address->id_state)}{$address->id_state|intval}{/if}{/if}]').attr('selected', true);
|
||||
{rdelim});
|
||||
{literal}
|
||||
$(document).ready(function() {
|
||||
$('#company').on('input',function(){
|
||||
vat_number();
|
||||
});
|
||||
vat_number();
|
||||
function vat_number()
|
||||
{
|
||||
if ($('#company').val() != '')
|
||||
$('#vat_number').show();
|
||||
else
|
||||
$('#vat_number').hide();
|
||||
}
|
||||
});
|
||||
{/literal}
|
||||
//]]>
|
||||
</script>
|
||||
|
||||
{capture name=path}{l s='Your addresses'}{/capture}
|
||||
{include file="$tpl_dir./breadcrumb.tpl"}
|
||||
|
||||
<h1>{l s='Your addresses'}</h1>
|
||||
|
||||
<h3>
|
||||
{if isset($id_address) && (isset($smarty.post.alias) || isset($address->alias))}
|
||||
{l s='Modify address'}
|
||||
{if isset($smarty.post.alias)}
|
||||
"{$smarty.post.alias}"
|
||||
{else}
|
||||
{if isset($address->alias)}"{$address->alias|escape:'html'}"{/if}
|
||||
{/if}
|
||||
{else}
|
||||
{l s='To add a new address, please fill out the form below.'}
|
||||
{/if}
|
||||
</h3>
|
||||
|
||||
{include file="$tpl_dir./errors.tpl"}
|
||||
|
||||
<p class="required"><sup>*</sup> {l s='Required field'}</p>
|
||||
|
||||
<form action="{$link->getPageLink('address', true)|escape:'html'}" method="post" class="std" id="add_address">
|
||||
<fieldset>
|
||||
<h3>{if isset($id_address)}{l s='Your address'}{else}{l s='New address'}{/if}</h3>
|
||||
{assign var="stateExist" value=false}
|
||||
{assign var="postCodeExist" value=false}
|
||||
{assign var="dniExist" value=false}
|
||||
{foreach from=$ordered_adr_fields item=field_name}
|
||||
{if $field_name eq 'dni'}
|
||||
{assign var="dniExist" value=true}
|
||||
<p class="text">
|
||||
<label for="dni">{l s='Identification number'}</label>
|
||||
<input type="text" class="text" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni}{else}{if isset($address->dni)}{$address->dni|escape:'html'}{/if}{/if}" />
|
||||
<span class="form_info">{l s='DNI / NIF / NIE'}</span>
|
||||
</p>
|
||||
{/if}
|
||||
{if $field_name eq 'company'}
|
||||
<p class="text">
|
||||
<label for="company">{l s='Company'}</label>
|
||||
<input type="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{else}{if isset($address->company)}{$address->company|escape:'html'}{/if}{/if}" />
|
||||
</p>
|
||||
{/if}
|
||||
{if $field_name eq 'vat_number'}
|
||||
<div id="vat_area">
|
||||
<div id="vat_number">
|
||||
<p class="text">
|
||||
<label for="vat_number">{l s='VAT number'}</label>
|
||||
<input type="text" class="text" name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number}{else}{if isset($address->vat_number)}{$address->vat_number|escape:'html'}{/if}{/if}" />
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
{if $field_name eq 'firstname'}
|
||||
<p class="required text">
|
||||
<label for="firstname">{l s='First name'} <sup>*</sup></label>
|
||||
<input type="text" name="firstname" id="firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{else}{if isset($address->firstname)}{$address->firstname|escape:'html'}{/if}{/if}" />
|
||||
</p>
|
||||
{/if}
|
||||
{if $field_name eq 'lastname'}
|
||||
<p class="required text">
|
||||
<label for="lastname">{l s='Last name'} <sup>*</sup></label>
|
||||
<input type="text" id="lastname" name="lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{else}{if isset($address->lastname)}{$address->lastname|escape:'html'}{/if}{/if}" />
|
||||
</p>
|
||||
{/if}
|
||||
{if $field_name eq 'address1'}
|
||||
<p class="required text">
|
||||
<label for="address1">{l s='Address'} <sup>*</sup></label>
|
||||
<input type="text" id="address1" name="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1}{else}{if isset($address->address1)}{$address->address1|escape:'html'}{/if}{/if}" />
|
||||
</p>
|
||||
{/if}
|
||||
{if $field_name eq 'address2'}
|
||||
<p class="required text">
|
||||
<label for="address2">{l s='Address (Line 2)'}</label>
|
||||
<input type="text" id="address2" name="address2" value="{if isset($smarty.post.address2)}{$smarty.post.address2}{else}{if isset($address->address2)}{$address->address2|escape:'html'}{/if}{/if}" />
|
||||
</p>
|
||||
{/if}
|
||||
{if $field_name eq 'postcode'}
|
||||
{assign var="postCodeExist" value=true}
|
||||
<p class="required postcode text">
|
||||
<label for="postcode">{l s='Zip / Postal Code'} <sup>*</sup></label>
|
||||
<input type="text" id="postcode" name="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{else}{if isset($address->postcode)}{$address->postcode|escape:'html'}{/if}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
|
||||
</p>
|
||||
{/if}
|
||||
{if $field_name eq 'city'}
|
||||
<p class="required text">
|
||||
<label for="city">{l s='City'} <sup>*</sup></label>
|
||||
<input type="text" name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city}{else}{if isset($address->city)}{$address->city|escape:'html'}{/if}{/if}" maxlength="64" />
|
||||
</p>
|
||||
{*
|
||||
if customer hasn't update his layout address, country has to be verified
|
||||
but it's deprecated
|
||||
*}
|
||||
{/if}
|
||||
{if $field_name eq 'Country:name' || $field_name eq 'country'}
|
||||
<p class="required select">
|
||||
<label for="id_country">{l s='Country'} <sup>*</sup></label>
|
||||
<select id="id_country" name="id_country">{$countries_list}</select>
|
||||
</p>
|
||||
{if $vatnumber_ajax_call}
|
||||
<script type="text/javascript">
|
||||
var ajaxurl = '{$ajaxurl}';
|
||||
{literal}
|
||||
$(document).ready(function(){
|
||||
$('#id_country').change(function() {
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url: ajaxurl+"vatnumber/ajax.php?id_country="+$('#id_country').val(),
|
||||
success: function(isApplicable){
|
||||
if(isApplicable == "1")
|
||||
{
|
||||
$('#vat_area').show();
|
||||
$('#vat_number').show();
|
||||
}
|
||||
else
|
||||
{
|
||||
$('#vat_area').hide();
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
{/literal}
|
||||
</script>
|
||||
{/if}
|
||||
{/if}
|
||||
{if $field_name eq 'State:name'}
|
||||
{assign var="stateExist" value=true}
|
||||
<p class="required id_state select">
|
||||
<label for="id_state">{l s='State'} <sup>*</sup></label>
|
||||
<select name="id_state" id="id_state">
|
||||
<option value="">-</option>
|
||||
</select>
|
||||
</p>
|
||||
{/if}
|
||||
{/foreach}
|
||||
{if !$postCodeExist}
|
||||
<p class="required postcode text hidden">
|
||||
<label for="postcode">{l s='Zip / Postal Code'} <sup>*</sup></label>
|
||||
<input type="text" id="postcode" name="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{else}{if isset($address->postcode)}{$address->postcode|escape:'html'}{/if}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
|
||||
</p>
|
||||
{/if}
|
||||
{if !$stateExist}
|
||||
<p class="required id_state select">
|
||||
<label for="id_state">{l s='State'} <sup>*</sup></label>
|
||||
<select name="id_state" id="id_state">
|
||||
<option value="">-</option>
|
||||
</select>
|
||||
</p>
|
||||
{/if}
|
||||
{if !$dniExist}
|
||||
<p class="required text dni">
|
||||
<label for="dni">{l s='Identification number'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni}{else}{if isset($address->dni)}{$address->dni|escape:'html'}{/if}{/if}" />
|
||||
<span class="form_info">{l s='DNI / NIF / NIE'}</span>
|
||||
</p>
|
||||
{/if}
|
||||
<p class="textarea">
|
||||
<label for="other">{l s='Additional information'}</label>
|
||||
<textarea id="other" name="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{else}{if isset($address->other)}{$address->other|escape:'html'}{/if}{/if}</textarea>
|
||||
</p>
|
||||
{if isset($one_phone_at_least) && $one_phone_at_least}
|
||||
<p class="inline-infos required">{l s='You must register at least one phone number.'}</p>
|
||||
{/if}
|
||||
<p class="text">
|
||||
<label for="phone">{l s='Home phone'}</label>
|
||||
<input type="text" id="phone" name="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone}{else}{if isset($address->phone)}{$address->phone|escape:'html'}{/if}{/if}" />
|
||||
</p>
|
||||
<p class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}text">
|
||||
<label for="phone_mobile">{l s='Mobile phone'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>*</sup>{/if}</label>
|
||||
<input type="text" id="phone_mobile" name="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile}{else}{if isset($address->phone_mobile)}{$address->phone_mobile|escape:'html'}{/if}{/if}" />
|
||||
</p>
|
||||
<p class="required text" id="adress_alias">
|
||||
<label for="alias">{l s='Please assign an address title for future reference.'} <sup>*</sup></label>
|
||||
<input type="text" id="alias" name="alias" value="{if isset($smarty.post.alias)}{$smarty.post.alias}{else if isset($address->alias)}{$address->alias|escape:'html'}{elseif !$select_address}{l s='My address'}{/if}" />
|
||||
</p>
|
||||
</fieldset>
|
||||
<p class="submit2">
|
||||
{if isset($id_address)}<input type="hidden" name="id_address" value="{$id_address|intval}" />{/if}
|
||||
{if isset($back)}<input type="hidden" name="back" value="{$back}" />{/if}
|
||||
{if isset($mod)}<input type="hidden" name="mod" value="{$mod}" />{/if}
|
||||
{if isset($select_address)}<input type="hidden" name="select_address" value="{$select_address|intval}" />{/if}
|
||||
<input type="hidden" name="token" value="{$token}" />
|
||||
<input type="submit" name="submitAddress" id="submitAddress" value="{l s='Save'}" class="button" />
|
||||
</p>
|
||||
</form>
|
||||
@@ -1,130 +0,0 @@
|
||||
{*
|
||||
* 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>
|
||||
@@ -1,741 +0,0 @@
|
||||
{*
|
||||
* 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}
|
||||
{if !isset($email_create)}{l s='Authentication'}{else}
|
||||
<a href="{$link->getPageLink('authentication', true)|escape:'html'}" rel="nofollow" title="{l s='Authentication'}">{l s='Authentication'}</a>
|
||||
<span class="navigation-pipe">{$navigationPipe}</span>{l s='Create your account'}
|
||||
{/if}
|
||||
{/capture}
|
||||
{include file="$tpl_dir./breadcrumb.tpl"}
|
||||
|
||||
<script type="text/javascript">
|
||||
// <![CDATA[
|
||||
var idSelectedCountry = {if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{else}false{/if};
|
||||
var countries = new Array();
|
||||
var countriesNeedIDNumber = new Array();
|
||||
var countriesNeedZipCode = new Array();
|
||||
{if isset($countries)}
|
||||
{foreach from=$countries item='country'}
|
||||
{if isset($country.states) && $country.contains_states}
|
||||
countries[{$country.id_country|intval}] = new Array();
|
||||
{foreach from=$country.states item='state' name='states'}
|
||||
countries[{$country.id_country|intval}].push({ldelim}'id' : '{$state.id_state|intval}', 'name' : '{$state.name|addslashes}'{rdelim});
|
||||
{/foreach}
|
||||
{/if}
|
||||
{if $country.need_identification_number}
|
||||
countriesNeedIDNumber.push({$country.id_country|intval});
|
||||
{/if}
|
||||
{if isset($country.need_zip_code)}
|
||||
countriesNeedZipCode[{$country.id_country|intval}] = {$country.need_zip_code};
|
||||
{/if}
|
||||
{/foreach}
|
||||
{/if}
|
||||
//]]>
|
||||
{literal}
|
||||
$(document).ready(function() {
|
||||
$('#company').on('input',function(){
|
||||
vat_number();
|
||||
});
|
||||
$('#company_invoice').on('input',function(){
|
||||
vat_number_invoice();
|
||||
});
|
||||
function vat_number()
|
||||
{
|
||||
if (($('#company').length) && ($('#company').val() != ''))
|
||||
$('#vat_number').show();
|
||||
else
|
||||
$('#vat_number').hide();
|
||||
}
|
||||
function vat_number_invoice()
|
||||
{
|
||||
if (($('#company_invoice').length) && ($('#company_invoice').val() != ''))
|
||||
$('#vat_number_block_invoice').show();
|
||||
else
|
||||
$('#vat_number_block_invoice').hide();
|
||||
}
|
||||
vat_number();
|
||||
vat_number_invoice();
|
||||
{/literal}
|
||||
$('.id_state option[value={if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{/if}]').prop('selected', true);
|
||||
{literal}
|
||||
});
|
||||
{/literal}
|
||||
</script>
|
||||
|
||||
<h1>{if !isset($email_create)}{l s='Authentication'}{else}{l s='Create an account'}{/if}</h1>
|
||||
{if !isset($back) || $back != 'my-account'}{assign var='current_step' value='login'}{include file="$tpl_dir./order-steps.tpl"}{/if}
|
||||
{include file="$tpl_dir./errors.tpl"}
|
||||
{assign var='stateExist' value=false}
|
||||
{assign var="postCodeExist" value=false}
|
||||
{assign var="dniExist" value=false}
|
||||
{if !isset($email_create)}
|
||||
<script type="text/javascript">
|
||||
{literal}
|
||||
$(document).ready(function(){
|
||||
// Retrocompatibility with 1.4
|
||||
if (typeof baseUri === "undefined" && typeof baseDir !== "undefined")
|
||||
baseUri = baseDir;
|
||||
$('#create-account_form').submit(function(){
|
||||
submitFunction();
|
||||
return false;
|
||||
});
|
||||
$('#invoice_address').click(function() {
|
||||
bindCheckbox();
|
||||
});
|
||||
bindCheckbox();
|
||||
});
|
||||
function submitFunction()
|
||||
{
|
||||
$('#create_account_error').html('').hide();
|
||||
//send the ajax request to the server
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: baseUri,
|
||||
async: true,
|
||||
cache: false,
|
||||
dataType : "json",
|
||||
data: {
|
||||
controller: 'authentication',
|
||||
SubmitCreate: 1,
|
||||
ajax: true,
|
||||
email_create: $('#email_create').val(),
|
||||
back: $('input[name=back]').val(),
|
||||
token: token
|
||||
},
|
||||
success: function(jsonData)
|
||||
{
|
||||
if (jsonData.hasError)
|
||||
{
|
||||
var errors = '';
|
||||
for(error in jsonData.errors)
|
||||
//IE6 bug fix
|
||||
if(error != 'indexOf')
|
||||
errors += '<li>'+jsonData.errors[error]+'</li>';
|
||||
$('#create_account_error').html('<ol>'+errors+'</ol>').show();
|
||||
}
|
||||
else
|
||||
{
|
||||
// adding a div to display a transition
|
||||
$('#center_column').html('<div id="noSlide">'+$('#center_column').html()+'</div>');
|
||||
$('#noSlide').fadeOut('slow', function(){
|
||||
$('#noSlide').html(jsonData.page);
|
||||
// update the state (when this file is called from AJAX you still need to update the state)
|
||||
bindStateInputAndUpdate();
|
||||
$(this).fadeIn('slow', function(){
|
||||
document.location = '#account-creation';
|
||||
});
|
||||
});
|
||||
}
|
||||
},
|
||||
error: function(XMLHttpRequest, textStatus, errorThrown)
|
||||
{
|
||||
alert("TECHNICAL ERROR: unable to load form.\n\nDetails:\nError thrown: " + XMLHttpRequest + "\n" + 'Text status: ' + textStatus);
|
||||
}
|
||||
});
|
||||
}
|
||||
function bindCheckbox()
|
||||
{
|
||||
if ($('#invoice_address:checked').length > 0)
|
||||
{
|
||||
$('#opc_invoice_address').slideDown('slow');
|
||||
if ($('#company_invoice').val() == '')
|
||||
$('#vat_number_block_invoice').hide();
|
||||
updateState('invoice');
|
||||
updateNeedIDNumber('invoice');
|
||||
updateZipCode('invoice');
|
||||
{/literal}
|
||||
$('.id_state option[value={if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{/if}]').prop('selected', true);
|
||||
$('.id_state_invoice option[value={if isset($smarty.post.id_state_invoice)}{$smarty.post.id_state_invoice|intval}{/if}]').prop('selected', true);
|
||||
{literal}
|
||||
}
|
||||
else
|
||||
$('#opc_invoice_address').slideUp('slow');
|
||||
}
|
||||
{/literal}
|
||||
</script>
|
||||
<!--{if isset($authentification_error)}
|
||||
<div class="error">
|
||||
{if {$authentification_error|@count} == 1}
|
||||
<p>{l s='There\'s at least one error'} :</p>
|
||||
{else}
|
||||
<p>{l s='There are %s errors' sprintf=[$account_error|@count]} :</p>
|
||||
{/if}
|
||||
<ol>
|
||||
{foreach from=$authentification_error item=v}
|
||||
<li>{$v}</li>
|
||||
{/foreach}
|
||||
</ol>
|
||||
</div>
|
||||
{/if}-->
|
||||
<form action="{$link->getPageLink('authentication', true)|escape:'html'}" method="post" id="create-account_form" class="std">
|
||||
<fieldset>
|
||||
<h3>{l s='Create an account'}</h3>
|
||||
<div class="form_content clearfix">
|
||||
<p class="title_block">{l s='Please enter your email address to create an account.'}</p>
|
||||
<div class="error" id="create_account_error" style="display:none"></div>
|
||||
<p class="text">
|
||||
<label for="email_create">{l s='Email address'}</label>
|
||||
<span><input type="text" id="email_create" name="email_create" value="{if isset($smarty.post.email_create)}{$smarty.post.email_create|stripslashes}{/if}" class="account_input" /></span>
|
||||
</p>
|
||||
<p class="submit">
|
||||
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back}" />{/if}
|
||||
<input type="submit" id="SubmitCreate" name="SubmitCreate" class="button_large" value="{l s='Create an account'}" />
|
||||
<input type="hidden" class="hidden" name="SubmitCreate" value="{l s='Create an account'}" />
|
||||
</p>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<form action="{$link->getPageLink('authentication', true)|escape:'html'}" method="post" id="login_form" class="std">
|
||||
<fieldset>
|
||||
<h3>{l s='Already registered?'}</h3>
|
||||
<div class="form_content clearfix">
|
||||
<p class="text">
|
||||
<label for="email">{l s='Email address'}</label>
|
||||
<span><input type="text" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email|stripslashes}{/if}" class="account_input" /></span>
|
||||
</p>
|
||||
<p class="text">
|
||||
<label for="passwd">{l s='Password'}</label>
|
||||
<span><input type="password" id="passwd" name="passwd" value="{if isset($smarty.post.passwd)}{$smarty.post.passwd|stripslashes}{/if}" class="account_input" /></span>
|
||||
</p>
|
||||
<p class="lost_password"><a href="{$link->getPageLink('password')|escape:'html'}" title="{l s='Recover your forgotten password'}" rel="nofollow">{l s='Forgot your password?'}</a></p>
|
||||
<p class="submit">
|
||||
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'html':'UTF-8'}" />{/if}
|
||||
<input type="submit" id="SubmitLogin" name="SubmitLogin" class="button" value="{l s='Authentication'}" />
|
||||
</p>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
{if isset($inOrderProcess) && $inOrderProcess && $PS_GUEST_CHECKOUT_ENABLED}
|
||||
<form action="{$link->getPageLink('authentication', true, NULL, "back=$back")|escape:'html'}" method="post" id="new_account_form" class="std clearfix">
|
||||
<fieldset>
|
||||
<h3>{l s='Instant checkout'}</h3>
|
||||
<div id="opc_account_form" style="display: block; ">
|
||||
<!-- Account -->
|
||||
<p class="required text">
|
||||
<label for="guest_email">{l s='Email address'} <sup>*</sup></label>
|
||||
<input type="text" class="text" id="guest_email" name="guest_email" value="{if isset($smarty.post.guest_email)}{$smarty.post.guest_email}{/if}" />
|
||||
</p>
|
||||
<p class="radio required">
|
||||
<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}"{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" class="text" id="firstname" name="firstname" onblur="$('#customer_firstname').val($(this).val());" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}" />
|
||||
<input type="hidden" class="text" id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}" />
|
||||
</p>
|
||||
<p class="required text">
|
||||
<label for="lastname">{l s='Last name'} <sup>*</sup></label>
|
||||
<input type="text" class="text" id="lastname" name="lastname" onblur="$('#customer_lastname').val($(this).val());" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{/if}" />
|
||||
<input type="hidden" class="text" id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{/if}" />
|
||||
</p>
|
||||
<p class="select">
|
||||
<span>{l s='Date of Birth'}</span>
|
||||
<select id="days" name="days">
|
||||
<option value="">-</option>
|
||||
{foreach from=$days item=day}
|
||||
<option value="{$day}" {if ($sl_day == $day)} selected="selected"{/if}>{$day} </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=month}
|
||||
<option value="{$k}" {if ($sl_month == $k)} selected="selected"{/if}>{l s=$month} </option>
|
||||
{/foreach}
|
||||
</select>
|
||||
<select id="years" name="years">
|
||||
<option value="">-</option>
|
||||
{foreach from=$years item=year}
|
||||
<option value="{$year}" {if ($sl_year == $year)} selected="selected"{/if}>{$year} </option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</p>
|
||||
{if isset($newsletter) && $newsletter}
|
||||
<p class="checkbox">
|
||||
<input type="checkbox" name="newsletter" id="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}
|
||||
<h3>{l s='Delivery address'}</h3>
|
||||
{foreach from=$dlv_all_fields item=field_name}
|
||||
{if $field_name eq "company" && $b2b_enable}
|
||||
<p class="text">
|
||||
<label for="company">{l s='Company'}</label>
|
||||
<input type="text" class="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{/if}" />
|
||||
</p>
|
||||
{elseif $field_name eq "vat_number"}
|
||||
<div id="vat_number" style="display:none;">
|
||||
<p class="text">
|
||||
<label for="vat_number">{l s='VAT number'}</label>
|
||||
<input type="text" class="text" name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number}{/if}" />
|
||||
</p>
|
||||
</div>
|
||||
{elseif $field_name eq "dni"}
|
||||
{assign var='dniExist' value=true}
|
||||
<p class="text">
|
||||
<label for="dni">{l s='Identification number'}</label>
|
||||
<input type="text" class="text" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni}{/if}" />
|
||||
<span class="form_info">{l s='DNI / NIF / NIE'}</span>
|
||||
</p>
|
||||
{elseif $field_name eq "address1"}
|
||||
<p class="required text">
|
||||
<label for="address1">{l s='Address'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="address1" id="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1}{/if}" />
|
||||
</p>
|
||||
{elseif $field_name eq "postcode"}
|
||||
{assign var='postCodeExist' value=true}
|
||||
<p class="required postcode text">
|
||||
<label for="postcode">{l s='Zip / Postal Code'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{/if}" onblur="$('#postcode').val($('#postcode').val().toUpperCase());" />
|
||||
</p>
|
||||
{elseif $field_name eq "city"}
|
||||
<p class="required text">
|
||||
<label for="city">{l s='City'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city}{/if}" />
|
||||
</p>
|
||||
<!--
|
||||
if customer hasn't update his layout address, country has to be verified
|
||||
but it's deprecated
|
||||
-->
|
||||
{elseif $field_name eq "Country:name" || $field_name eq "country"}
|
||||
<p class="required select">
|
||||
<label for="id_country">{l s='Country'} <sup>*</sup></label>
|
||||
<select name="id_country" id="id_country">
|
||||
{foreach from=$countries item=v}
|
||||
<option value="{$v.id_country}"{if (isset($smarty.post.id_country) AND $smarty.post.id_country == $v.id_country) OR (!isset($smarty.post.id_country) && $sl_country == $v.id_country)} selected="selected"{/if}>{$v.name}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</p>
|
||||
{elseif $field_name eq "State:name"}
|
||||
{assign var='stateExist' value=true}
|
||||
<p class="required id_state select">
|
||||
<label for="id_state">{l s='State'} <sup>*</sup></label>
|
||||
<select name="id_state" id="id_state">
|
||||
<option value="">-</option>
|
||||
</select>
|
||||
</p>
|
||||
{/if}
|
||||
{/foreach}
|
||||
{if $postCodeExist eq false}
|
||||
<p class="required postcode text hidden">
|
||||
<label for="postcode">{l s='Zip / Postal Code'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{/if}" onblur="$('#postcode').val($('#postcode').val().toUpperCase());" />
|
||||
</p>
|
||||
{/if}
|
||||
{if $stateExist eq false}
|
||||
<p class="required id_state select hidden">
|
||||
<label for="id_state">{l s='State'} <sup>*</sup></label>
|
||||
<select name="id_state" id="id_state">
|
||||
<option value="">-</option>
|
||||
</select>
|
||||
</p>
|
||||
{/if}
|
||||
{if $dniExist eq false}
|
||||
<p class="required text dni">
|
||||
<label for="dni">{l s='Identification number'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni}{/if}" />
|
||||
<span class="form_info">{l s='DNI / NIF / NIE'}</span>
|
||||
</p>
|
||||
{/if}
|
||||
<p class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}text">
|
||||
<label for="phone_mobile">{l s='Mobile phone'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>*</sup>{/if}</label>
|
||||
<input type="text" class="text" name="phone_mobile" id="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile}{/if}" />
|
||||
</p>
|
||||
<input type="hidden" name="alias" id="alias" value="{l s='My address'}" />
|
||||
<input type="hidden" name="is_new_customer" id="is_new_customer" value="0" />
|
||||
<p class="checkbox">
|
||||
<input type="checkbox" name="invoice_address" id="invoice_address"{if isset($smarty.post.invoice_address) && $smarty.post.invoice_address} checked="checked"{/if} autocomplete="off"/>
|
||||
<label for="invoice_address"><b>{l s='Please use another address for invoice'}</b></label>
|
||||
</p>
|
||||
<div id="opc_invoice_address" class="hidden">
|
||||
{assign var=stateExist value=false}
|
||||
{assign var=postCodeExist value=false}
|
||||
{assign var=dniExist value=false}
|
||||
<h3>{l s='Invoice address'}</h3>
|
||||
{foreach from=$inv_all_fields item=field_name}
|
||||
{if $field_name eq "company" && $b2b_enable}
|
||||
<p class="text">
|
||||
<label for="company_invoice">{l s='Company'}</label>
|
||||
<input type="text" class="text" id="company_invoice" name="company_invoice" value="{if isset($smarty.post.company_invoice)}{$smarty.post.company_invoice}{/if}" />
|
||||
</p>
|
||||
{elseif $field_name eq "vat_number"}
|
||||
<div id="vat_number_block_invoice" class="hidden">
|
||||
<p class="text">
|
||||
<label for="vat_number_invoice">{l s='VAT number'}</label>
|
||||
<input type="text" class="text" id="vat_number_invoice" name="vat_number_invoice" value="{if isset($smarty.post.vat_number_invoice)}{$smarty.post.vat_number_invoice}{/if}" />
|
||||
</p>
|
||||
</div>
|
||||
{elseif $field_name eq "dni"}
|
||||
{assign var=dniExist value=true}
|
||||
<p class="text">
|
||||
<label for="dni_invoice">{l s='Identification number'}</label>
|
||||
<input type="text" class="text" name="dni_invoice" id="dni_invoice" value="{if isset($smarty.post.dni_invoice)}{$smarty.post.dni_invoice}{/if}" />
|
||||
<span class="form_info">{l s='DNI / NIF / NIE'}</span>
|
||||
</p>
|
||||
{elseif $field_name eq "firstname"}
|
||||
<p class="required text">
|
||||
<label for="firstname_invoice">{l s='First name'} <sup>*</sup></label>
|
||||
<input type="text" class="text" id="firstname_invoice" name="firstname_invoice" value="{if isset($smarty.post.firstname_invoice)}{$smarty.post.firstname_invoice}{/if}" />
|
||||
</p>
|
||||
{elseif $field_name eq "lastname"}
|
||||
<p class="required text">
|
||||
<label for="lastname_invoice">{l s='Last name'} <sup>*</sup></label>
|
||||
<input type="text" class="text" id="lastname_invoice" name="lastname_invoice" value="{if isset($smarty.post.firstname_invoice)}{$smarty.post.firstname_invoice}{/if}" />
|
||||
</p>
|
||||
{elseif $field_name eq "address1"}
|
||||
<p class="required text">
|
||||
<label for="address1_invoice">{l s='Address'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="address1_invoice" id="address1_invoice" value="{if isset($smarty.post.address1_invoice)}{$smarty.post.address1_invoice}{/if}" />
|
||||
</p>
|
||||
{elseif $field_name eq "postcode"}
|
||||
{$postCodeExist = true}
|
||||
<p class="required postcode_invoice text">
|
||||
<label for="postcode_invoice">{l s='Zip / Postal Code'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="postcode_invoice" id="postcode_invoice" value="{if isset($smarty.post.postcode_invoice)}{$smarty.post.postcode_invoice}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
|
||||
</p>
|
||||
{elseif $field_name eq "city"}
|
||||
<p class="required text">
|
||||
<label for="city_invoice">{l s='City'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="city_invoice" id="city_invoice" value="{if isset($smarty.post.city_invoice)}{$smarty.post.city_invoice}{/if}" />
|
||||
</p>
|
||||
{elseif $field_name eq "country" || $field_name eq "Country:name"}
|
||||
<p class="required select">
|
||||
<label for="id_country_invoice">{l s='Country'} <sup>*</sup></label>
|
||||
<select name="id_country_invoice" id="id_country_invoice">
|
||||
<option value="">-</option>
|
||||
{foreach from=$countries item=v}
|
||||
<option value="{$v.id_country}"{if (isset($smarty.post.id_country_invoice) && $smarty.post.id_country_invoice == $v.id_country) OR (!isset($smarty.post.id_country_invoice) && $sl_country == $v.id_country)} selected="selected"{/if}>{$v.name|escape:'html':'UTF-8'}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</p>
|
||||
{elseif $field_name eq "state" || $field_name eq 'State:name'}
|
||||
{$stateExist = true}
|
||||
<p class="required id_state_invoice select" style="display:none;">
|
||||
<label for="id_state_invoice">{l s='State'} <sup>*</sup></label>
|
||||
<select name="id_state_invoice" id="id_state_invoice">
|
||||
<option value="">-</option>
|
||||
</select>
|
||||
</p>
|
||||
{/if}
|
||||
{/foreach}
|
||||
{if !$postCodeExist}
|
||||
<p class="required postcode_invoice text hidden">
|
||||
<label for="postcode_invoice">{l s='Zip / Postal Code'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="postcode_invoice" id="postcode_invoice" value="{if isset($smarty.post.postcode_invoice)}{$smarty.post.postcode_invoice}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
|
||||
</p>
|
||||
{/if}
|
||||
{if !$stateExist}
|
||||
<p class="required id_state_invoice select hidden">
|
||||
<label for="id_state_invoice">{l s='State'} <sup>*</sup></label>
|
||||
<select name="id_state_invoice" id="id_state_invoice">
|
||||
<option value="">-</option>
|
||||
</select>
|
||||
</p>
|
||||
{/if}
|
||||
{if !$dniExist}
|
||||
<p class="required text dni_invoice">
|
||||
<label for="dni_invoice">{l s='Identification number'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="dni_invoice" id="dni_invoice" value="{if isset($smarty.post.dni_invoice)}{$smarty.post.dni_invoice}{/if}" />
|
||||
<span class="form_info">{l s='DNI / NIF / NIE'}</span>
|
||||
</p>
|
||||
{/if}
|
||||
<p class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}text">
|
||||
<label for="phone_mobile_invoice">{l s='Mobile phone'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>*</sup>{/if}</label>
|
||||
<input type="text" class="text" name="phone_mobile_invoice" id="phone_mobile_invoice" value="{if isset($smarty.post.phone_mobile_invoice)}{$smarty.post.phone_mobile_invoice}{/if}" />
|
||||
</p>
|
||||
<input type="hidden" name="alias_invoice" id="alias_invoice" value="{l s='My Invoice address'}" />
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
{$HOOK_CREATE_ACCOUNT_FORM}
|
||||
<p class="cart_navigation required submit">
|
||||
<span><sup>*</sup>{l s='Required field'}</span>
|
||||
<input type="hidden" name="display_guest_checkout" value="1" />
|
||||
<input type="submit" class="exclusive" name="submitGuestAccount" id="submitGuestAccount" value="{l s='Continue'}" />
|
||||
</p>
|
||||
</form>
|
||||
{/if}
|
||||
{else}
|
||||
<!--{if isset($account_error)}
|
||||
<div class="error">
|
||||
{if {$account_error|@count} == 1}
|
||||
<p>{l s='There\'s at least one error'} :</p>
|
||||
{else}
|
||||
<p>{l s='There are %s errors' sprintf=[$account_error|@count]} :</p>
|
||||
{/if}
|
||||
<ol>
|
||||
{foreach from=$account_error item=v}
|
||||
<li>{$v}</li>
|
||||
{/foreach}
|
||||
</ol>
|
||||
</div>
|
||||
{/if}-->
|
||||
<form action="{$link->getPageLink('authentication', true)|escape:'html'}" method="post" id="account-creation_form" class="std">
|
||||
{$HOOK_CREATE_ACCOUNT_TOP}
|
||||
<fieldset class="account_creation">
|
||||
<h3>{l s='Your personal information'}</h3>
|
||||
<p class="radio required">
|
||||
<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}" {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="customer_firstname">{l s='First name'} <sup>*</sup></label>
|
||||
<input onkeyup="$('#firstname').val(this.value);" type="text" class="text" id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.customer_firstname)}{$smarty.post.customer_firstname}{/if}" />
|
||||
</p>
|
||||
<p class="required text">
|
||||
<label for="customer_lastname">{l s='Last name'} <sup>*</sup></label>
|
||||
<input onkeyup="$('#lastname').val(this.value);" type="text" class="text" id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.customer_lastname)}{$smarty.post.customer_lastname}{/if}" />
|
||||
</p>
|
||||
<p class="required text">
|
||||
<label for="email">{l s='Email'} <sup>*</sup></label>
|
||||
<input type="text" class="text" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email}{/if}" />
|
||||
</p>
|
||||
<p class="required password">
|
||||
<label for="passwd">{l s='Password'} <sup>*</sup></label>
|
||||
<input type="password" class="text" name="passwd" id="passwd" />
|
||||
<span class="form_info">{l s='(Five characters minimum)'}</span>
|
||||
</p>
|
||||
<p class="select">
|
||||
<span>{l s='Date of Birth'}</span>
|
||||
<select id="days" name="days">
|
||||
<option value="">-</option>
|
||||
{foreach from=$days item=day}
|
||||
<option value="{$day}" {if ($sl_day == $day)} selected="selected"{/if}>{$day} </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=month}
|
||||
<option value="{$k}" {if ($sl_month == $k)} selected="selected"{/if}>{l s=$month} </option>
|
||||
{/foreach}
|
||||
</select>
|
||||
<select id="years" name="years">
|
||||
<option value="">-</option>
|
||||
{foreach from=$years item=year}
|
||||
<option value="{$year}" {if ($sl_year == $year)} selected="selected"{/if}>{$year} </option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</p>
|
||||
{if $newsletter}
|
||||
<p class="checkbox" >
|
||||
<input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) AND $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) AND $smarty.post.optin == 1} checked="checked"{/if} autocomplete="off"/>
|
||||
<label for="optin">{l s='Receive special offers from our partners!'}</label>
|
||||
</p>
|
||||
{/if}
|
||||
</fieldset>
|
||||
{if $b2b_enable}
|
||||
<fieldset class="account_creation">
|
||||
<h3>{l s='Your company information'}</h3>
|
||||
<p class="text">
|
||||
<label for="">{l s='Company'}</label>
|
||||
<input type="text" class="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{/if}" />
|
||||
</p>
|
||||
<p class="text">
|
||||
<label for="siret">{l s='SIRET'}</label>
|
||||
<input type="text" class="text" id="siret" name="siret" value="{if isset($smarty.post.siret)}{$smarty.post.siret}{/if}" />
|
||||
</p>
|
||||
<p class="text">
|
||||
<label for="ape">{l s='APE'}</label>
|
||||
<input type="text" class="text" id="ape" name="ape" value="{if isset($smarty.post.ape)}{$smarty.post.ape}{/if}" />
|
||||
</p>
|
||||
<p class="text">
|
||||
<label for="website">{l s='Website'}</label>
|
||||
<input type="text" class="text" id="website" name="website" value="{if isset($smarty.post.website)}{$smarty.post.website}{/if}" />
|
||||
</p>
|
||||
</fieldset>
|
||||
{/if}
|
||||
{if isset($PS_REGISTRATION_PROCESS_TYPE) && $PS_REGISTRATION_PROCESS_TYPE}
|
||||
<fieldset class="account_creation">
|
||||
<h3>{l s='Your address'}</h3>
|
||||
{foreach from=$dlv_all_fields item=field_name}
|
||||
{if $field_name eq "company"}
|
||||
{if !$b2b_enable}
|
||||
<p class="text">
|
||||
<label for="company">{l s='Company'}</label>
|
||||
<input type="text" class="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{/if}" />
|
||||
</p>
|
||||
{/if}
|
||||
{elseif $field_name eq "vat_number"}
|
||||
<div id="vat_number" style="display:none;">
|
||||
<p class="text">
|
||||
<label for="vat_number">{l s='VAT number'}</label>
|
||||
<input type="text" class="text" name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number}{/if}" />
|
||||
</p>
|
||||
</div>
|
||||
{elseif $field_name eq "firstname"}
|
||||
<p class="required text">
|
||||
<label for="firstname">{l s='First name'} <sup>*</sup></label>
|
||||
<input type="text" class="text" id="firstname" name="firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname}{/if}" />
|
||||
</p>
|
||||
{elseif $field_name eq "lastname"}
|
||||
<p class="required text">
|
||||
<label for="lastname">{l s='Last name'} <sup>*</sup></label>
|
||||
<input type="text" class="text" id="lastname" name="lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname}{/if}" />
|
||||
</p>
|
||||
{elseif $field_name eq "address1"}
|
||||
<p class="required text">
|
||||
<label for="address1">{l s='Address'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="address1" id="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1}{/if}" />
|
||||
<span class="inline-infos">{l s='Street address, P.O. Box, Company name, etc.'}</span>
|
||||
</p>
|
||||
{elseif $field_name eq "address2"}
|
||||
<p class="text">
|
||||
<label for="address2">{l s='Address (Line 2)'}</label>
|
||||
<input type="text" class="text" name="address2" id="address2" value="{if isset($smarty.post.address2)}{$smarty.post.address2}{/if}" />
|
||||
<span class="inline-infos">{l s='Apartment, suite, unit, building, floor, etc...'}</span>
|
||||
</p>
|
||||
{elseif $field_name eq "postcode"}
|
||||
{assign var='postCodeExist' value=true}
|
||||
<p class="required postcode text">
|
||||
<label for="postcode">{l s='Zip / Postal Code'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
|
||||
</p>
|
||||
{elseif $field_name eq "city"}
|
||||
<p class="required text">
|
||||
<label for="city">{l s='City'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city}{/if}" />
|
||||
</p>
|
||||
<!--
|
||||
if customer hasn't update his layout address, country has to be verified
|
||||
but it's deprecated
|
||||
-->
|
||||
{elseif $field_name eq "Country:name" || $field_name eq "country"}
|
||||
<p class="required select">
|
||||
<label for="id_country">{l s='Country'} <sup>*</sup></label>
|
||||
<select name="id_country" id="id_country">
|
||||
<option value="">-</option>
|
||||
{foreach from=$countries item=v}
|
||||
<option value="{$v.id_country}"{if (isset($smarty.post.id_country) AND $smarty.post.id_country == $v.id_country) OR (!isset($smarty.post.id_country) && $sl_country == $v.id_country)} selected="selected"{/if}>{$v.name}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</p>
|
||||
{elseif $field_name eq "State:name" || $field_name eq 'state'}
|
||||
{assign var='stateExist' value=true}
|
||||
<p class="required id_state select">
|
||||
<label for="id_state">{l s='State'} <sup>*</sup></label>
|
||||
<select name="id_state" id="id_state">
|
||||
<option value="">-</option>
|
||||
</select>
|
||||
</p>
|
||||
{/if}
|
||||
{/foreach}
|
||||
{if $postCodeExist eq false}
|
||||
<p class="required postcode text hidden">
|
||||
<label for="postcode">{l s='Zip / Postal Code'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
|
||||
</p>
|
||||
{/if}
|
||||
{if $stateExist eq false}
|
||||
<p class="required id_state select hidden">
|
||||
<label for="id_state">{l s='State'} <sup>*</sup></label>
|
||||
<select name="id_state" id="id_state">
|
||||
<option value="">-</option>
|
||||
</select>
|
||||
</p>
|
||||
{/if}
|
||||
<p class="textarea">
|
||||
<label for="other">{l s='Additional information'}</label>
|
||||
<textarea name="other" id="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{/if}</textarea>
|
||||
</p>
|
||||
{if isset($one_phone_at_least) && $one_phone_at_least}
|
||||
<p class="inline-infos required">{l s='You must register at least one phone number.'}</p>
|
||||
{/if}
|
||||
<p class="text">
|
||||
<label for="phone">{l s='Home phone'}</label>
|
||||
<input type="text" class="text" name="phone" id="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone}{/if}" />
|
||||
</p>
|
||||
<p class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}text">
|
||||
<label for="phone_mobile">{l s='Mobile phone'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>*</sup>{/if}</label>
|
||||
<input type="text" class="text" name="phone_mobile" id="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile}{/if}" />
|
||||
</p>
|
||||
<p class="required text" id="address_alias">
|
||||
<label for="alias">{l s='Assign an address alias for future reference.'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="alias" id="alias" value="{if isset($smarty.post.alias)}{$smarty.post.alias}{else}{l s='My address'}{/if}" />
|
||||
</p>
|
||||
</fieldset>
|
||||
<fieldset class="account_creation dni">
|
||||
<h3>{l s='Tax identification'}</h3>
|
||||
<p class="required text">
|
||||
<label for="dni">{l s='Identification number'} <sup>*</sup></label>
|
||||
<input type="text" class="text" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni}{/if}" />
|
||||
<span class="form_info">{l s='DNI / NIF / NIE'}</span>
|
||||
</p>
|
||||
</fieldset>
|
||||
{/if}
|
||||
{$HOOK_CREATE_ACCOUNT_FORM}
|
||||
<p class="cart_navigation required submit">
|
||||
<input type="hidden" name="email_create" value="1" />
|
||||
<input type="hidden" name="is_new_customer" value="1" />
|
||||
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'html':'UTF-8'}" />{/if}
|
||||
<input type="submit" name="submitAccount" id="submitAccount" value="{l s='Register'}" class="exclusive" />
|
||||
<span><sup>*</sup>{l s='Required field'}</span>
|
||||
</p>
|
||||
</form>
|
||||
{/if}
|
||||
@@ -1,54 +0,0 @@
|
||||
{*
|
||||
* 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}
|
||||
@@ -1,39 +0,0 @@
|
||||
{*
|
||||
* 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 -->
|
||||
35
themes/default/cache/index.php
vendored
@@ -1,35 +0,0 @@
|
||||
<?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;
|
||||
@@ -1,52 +0,0 @@
|
||||
{*
|
||||
* 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>
|
||||
@@ -1,34 +0,0 @@
|
||||
{*
|
||||
* 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}
|
||||
@@ -1,39 +0,0 @@
|
||||
{*
|
||||
* 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>
|
||||
@@ -1,120 +0,0 @@
|
||||
{*
|
||||
* 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
|
||||
*}
|
||||
|
||||
{include file="$tpl_dir./breadcrumb.tpl"}
|
||||
{include file="$tpl_dir./errors.tpl"}
|
||||
|
||||
{if isset($category)}
|
||||
{if $category->id AND $category->active}
|
||||
<h1>
|
||||
{strip}
|
||||
{$category->name|escape:'html':'UTF-8'}
|
||||
{if isset($categoryNameComplement)}
|
||||
{$categoryNameComplement|escape:'html':'UTF-8'}
|
||||
{/if}
|
||||
{/strip}
|
||||
</h1>
|
||||
|
||||
<div class="resumecat category-product-count">
|
||||
{include file="$tpl_dir./category-count.tpl"}
|
||||
</div>
|
||||
|
||||
{if $scenes || $category->description || $category->id_image}
|
||||
<div class="content_scene_cat">
|
||||
{if $scenes}
|
||||
<!-- Scenes -->
|
||||
{include file="$tpl_dir./scenes.tpl" scenes=$scenes}
|
||||
{else}
|
||||
<!-- Category image -->
|
||||
{if $category->id_image}
|
||||
<div class="align_center">
|
||||
<img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category_default')|escape:'html'}" alt="{$category->name|escape:'html':'UTF-8'}" title="{$category->name|escape:'html':'UTF-8'}" id="categoryImage" width="{$categorySize.width}" height="{$categorySize.height}" />
|
||||
</div>
|
||||
{/if}
|
||||
{/if}
|
||||
|
||||
{if $category->description}
|
||||
<div class="cat_desc">
|
||||
{if strlen($category->description) > 120}
|
||||
<div id="category_description_short">{$description_short}</div>
|
||||
<div id="category_description_full" style="display:none;">{$category->description}</div>
|
||||
<a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a>
|
||||
{else}
|
||||
<div>{$category->description}</div>
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
{if isset($subcategories)}
|
||||
<!-- Subcategories -->
|
||||
<div id="subcategories">
|
||||
<h3>{l s='Subcategories'}</h3>
|
||||
<ul class="inline_list">
|
||||
{foreach from=$subcategories item=subcategory}
|
||||
<li class="clearfix">
|
||||
<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}" title="{$subcategory.name|escape:'html':'UTF-8'}" class="img">
|
||||
{if $subcategory.id_image}
|
||||
<img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')|escape:'html'}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
|
||||
{else}
|
||||
<img src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
|
||||
{/if}
|
||||
</a>
|
||||
<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}" class="cat_name">{$subcategory.name|escape:'html':'UTF-8'}</a>
|
||||
{if $subcategory.description}
|
||||
<p class="cat_desc">{$subcategory.description}</p>
|
||||
{/if}
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
<br class="clear"/>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
{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>
|
||||
{/if}
|
||||
{elseif $category->id}
|
||||
<p class="warning">{l s='This category is currently unavailable.'}</p>
|
||||
{/if}
|
||||
{/if}
|
||||
@@ -1,74 +0,0 @@
|
||||
{*
|
||||
* 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 />
|
||||
@@ -1,9 +0,0 @@
|
||||
<?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>
|
||||
@@ -1,132 +0,0 @@
|
||||
{*
|
||||
* 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='Contact'}{/capture}
|
||||
{include file="$tpl_dir./breadcrumb.tpl"}
|
||||
|
||||
<h1>{l s='Customer service'} - {if isset($customerThread) && $customerThread}{l s='Your reply'}{else}{l s='Contact us'}{/if}</h1>
|
||||
|
||||
{if isset($confirmation)}
|
||||
<p>{l s='Your message has been successfully sent to our team.'}</p>
|
||||
<ul class="footer_links">
|
||||
<li><a href="{$base_dir}"><img class="icon" alt="" src="{$img_dir}icon/home.gif"/></a><a href="{$base_dir}">{l s='Home'}</a></li>
|
||||
</ul>
|
||||
{elseif isset($alreadySent)}
|
||||
<p>{l s='Your message has already been sent.'}</p>
|
||||
<ul class="footer_links">
|
||||
<li><a href="{$base_dir}"><img class="icon" alt="" src="{$img_dir}icon/home.gif"/></a><a href="{$base_dir}">{l s='Home'}</a></li>
|
||||
</ul>
|
||||
{else}
|
||||
<p class="bold">{l s='For questions about an order or for more information about our products'}.</p>
|
||||
{include file="$tpl_dir./errors.tpl"}
|
||||
<form action="{$request_uri|escape:'html':'UTF-8'}" method="post" class="std" enctype="multipart/form-data">
|
||||
<fieldset>
|
||||
<h3>{l s='send a message'}</h3>
|
||||
<p class="select">
|
||||
<label for="id_contact">{l s='Subject Heading'}</label>
|
||||
{if isset($customerThread.id_contact)}
|
||||
{foreach from=$contacts item=contact}
|
||||
{if $contact.id_contact == $customerThread.id_contact}
|
||||
<input type="text" id="contact_name" name="contact_name" value="{$contact.name|escape:'html':'UTF-8'}" readonly="readonly" />
|
||||
<input type="hidden" name="id_contact" value="{$contact.id_contact}" />
|
||||
{/if}
|
||||
{/foreach}
|
||||
</p>
|
||||
{else}
|
||||
<select id="id_contact" name="id_contact" onchange="showElemFromSelect('id_contact', 'desc_contact')">
|
||||
<option value="0">{l s='-- Choose --'}</option>
|
||||
{foreach from=$contacts item=contact}
|
||||
<option value="{$contact.id_contact|intval}" {if isset($smarty.request.id_contact) && $smarty.request.id_contact == $contact.id_contact}selected="selected"{/if}>{$contact.name|escape:'html':'UTF-8'}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</p>
|
||||
<p id="desc_contact0" class="desc_contact"> </p>
|
||||
{foreach from=$contacts item=contact}
|
||||
<p id="desc_contact{$contact.id_contact|intval}" class="desc_contact" style="display:none;">
|
||||
{$contact.description|escape:'html':'UTF-8'}
|
||||
</p>
|
||||
{/foreach}
|
||||
{/if}
|
||||
<p class="text">
|
||||
<label for="email">{l s='Email address'}</label>
|
||||
{if isset($customerThread.email)}
|
||||
<input type="text" id="email" name="from" value="{$customerThread.email|escape:'html':'UTF-8'}" readonly="readonly" />
|
||||
{else}
|
||||
<input type="text" id="email" name="from" value="{$email|escape:'html':'UTF-8'}" />
|
||||
{/if}
|
||||
</p>
|
||||
{if !$PS_CATALOG_MODE}
|
||||
{if (!isset($customerThread.id_order) || $customerThread.id_order > 0)}
|
||||
<p class="text select">
|
||||
<label for="id_order">{l s='Order reference'}</label>
|
||||
{if !isset($customerThread.id_order) && isset($isLogged) && $isLogged == 1}
|
||||
<select name="id_order" >
|
||||
<option value="0">{l s='-- Choose --'}</option>
|
||||
{foreach from=$orderList item=order}
|
||||
<option value="{$order.value|intval}" {if $order.selected|intval}selected="selected"{/if}>{$order.label|escape:'html':'UTF-8'}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
{elseif !isset($customerThread.id_order) && empty($isLogged)}
|
||||
<input type="text" name="id_order" id="id_order" value="{if isset($customerThread.id_order) && $customerThread.id_order|intval > 0}{$customerThread.id_order|intval}{else}{if isset($smarty.post.id_order) && !empty($smarty.post.id_order)}{$smarty.post.id_order|intval}{/if}{/if}" />
|
||||
{elseif $customerThread.id_order|intval > 0}
|
||||
<input type="text" name="id_order" id="id_order" value="{$customerThread.id_order|intval}" readonly="readonly" />
|
||||
{/if}
|
||||
</p>
|
||||
{/if}
|
||||
{if isset($isLogged) && $isLogged}
|
||||
<p class="text select">
|
||||
<label for="id_product">{l s='Product'}</label>
|
||||
{if !isset($customerThread.id_product)}
|
||||
{foreach from=$orderedProductList key=id_order item=products name=products}
|
||||
<select name="id_product" id="{$id_order}_order_products" class="product_select" style="width:300px;{if !$smarty.foreach.products.first} display:none; {/if}" {if !$smarty.foreach.products.first}disabled="disabled" {/if}>
|
||||
<option value="0">{l s='-- Choose --'}</option>
|
||||
{foreach from=$products item=product}
|
||||
<option value="{$product.value|intval}">{$product.label|escape:'html':'UTF-8'}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
{/foreach}
|
||||
{elseif $customerThread.id_product > 0}
|
||||
<input type="text" name="id_product" id="id_product" value="{$customerThread.id_product|intval}" readonly="readonly" />
|
||||
{/if}
|
||||
</p>
|
||||
{/if}
|
||||
{/if}
|
||||
{if $fileupload == 1}
|
||||
<p class="text">
|
||||
<label for="fileUpload">{l s='Attach File'}</label>
|
||||
<input type="hidden" name="MAX_FILE_SIZE" value="2000000" />
|
||||
<input type="file" name="fileUpload" id="fileUpload" />
|
||||
</p>
|
||||
{/if}
|
||||
<p class="textarea">
|
||||
<label for="message">{l s='Message'}</label>
|
||||
<textarea id="message" name="message" rows="15" cols="10">{if isset($message)}{$message|escape:'html':'UTF-8'|stripslashes}{/if}</textarea>
|
||||
</p>
|
||||
<p class="submit">
|
||||
<input type="submit" name="submitMessage" id="submitMessage" value="{l s='Send'}" class="button_large" />
|
||||
</p>
|
||||
</fieldset>
|
||||
</form>
|
||||
{/if}
|
||||
@@ -1,102 +0,0 @@
|
||||
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
|
||||
}
|
||||
|
||||
@@ -1,81 +0,0 @@
|
||||
#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;
|
||||
}
|
||||
@@ -1,64 +0,0 @@
|
||||
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
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
/* 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 }
|
||||
@@ -1,98 +0,0 @@
|
||||
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
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,51 +0,0 @@
|
||||
|
||||
#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;}
|
||||
@@ -1,138 +0,0 @@
|
||||
/*
|
||||
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;
|
||||
}
|
||||
*/
|
||||
@@ -1,71 +0,0 @@
|
||||
#history #left_column {display:none}
|
||||
#history #center_column{width:757px}
|
||||
#history #center_column h1{margin-top:20px}
|
||||
#history #center_column .title_block {
|
||||
margin:20px 0;
|
||||
padding:15px 20px;
|
||||
background:#ccc
|
||||
}
|
||||
#history #center_column .title_block input {
|
||||
position: relative;
|
||||
top: -8px;
|
||||
float:right;
|
||||
}
|
||||
|
||||
.info-order {
|
||||
margin-bottom:20px;
|
||||
}
|
||||
.info-order p {padding-bottom:10px}
|
||||
.info-order p .icon {
|
||||
position:relative;
|
||||
top:2px;
|
||||
left:0
|
||||
}
|
||||
#order-list {
|
||||
margin-bottom:20px;
|
||||
width:100%;
|
||||
border:1px solid #999;
|
||||
border-bottom:none
|
||||
}
|
||||
#order-list th {
|
||||
padding:14px 12px;
|
||||
color:#fff;
|
||||
text-transform:uppercase;
|
||||
text-shadow:0 1px 0 #000;
|
||||
background:url(../img/bg_table_th.png) repeat-x 0 0 #999
|
||||
}
|
||||
#order-list tr.alternate_item {background-color: #f3f3f3}
|
||||
#order-list td {
|
||||
padding:12px;
|
||||
border-right:1px solid #e9e9e9;
|
||||
border-bottom:1px solid #e9e9e9;
|
||||
font-weight:bold;
|
||||
font-size:12px;
|
||||
vertical-align:top
|
||||
}
|
||||
#order-list td .price, #order-detail-content tbody .price {
|
||||
white-space: nowrap;
|
||||
}
|
||||
#order-list td.history_detail {border-right:none;}
|
||||
|
||||
#order-list .last_item td {border-bottom:1px solid #999}
|
||||
|
||||
.adresses_bloc {margin-bottom:20px}
|
||||
.adresses_bloc .item {margin-right:60px}
|
||||
|
||||
.detail_step_by_step {width:100%}
|
||||
.detail_step_by_step tr.last_item td {border-bottom:1px solid #999}
|
||||
|
||||
#order-detail-content table {width:100%}
|
||||
#order-detail-content table .order_qte_input {display:none}
|
||||
#order-detail-content table tr.totalprice td {border-bottom:1px solid #999}
|
||||
#order-detail-content table tr:nth-child(even) {background:#f3f3f3;}
|
||||
|
||||
#sendOrderMessage {margin-bottom:20px}
|
||||
#sendOrderMessage p {padding-bottom:10px}
|
||||
|
||||
#returnOrderMessage .textarea textarea,
|
||||
#sendOrderMessage .textarea textarea {
|
||||
width:100%;
|
||||
border:1px solid #999
|
||||
}
|
||||
@@ -1,71 +0,0 @@
|
||||
#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;
|
||||
}
|
||||
@@ -1,35 +0,0 @@
|
||||
<?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;
|
||||
@@ -1,12 +0,0 @@
|
||||
#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
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
#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
|
||||
}
|
||||
@@ -1,93 +0,0 @@
|
||||
#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;
|
||||
}
|
||||
@@ -1,534 +0,0 @@
|
||||
/* 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;
|
||||
}
|
||||
@@ -1,148 +0,0 @@
|
||||
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}
|
||||
@@ -1,2 +0,0 @@
|
||||
body { direction: rtl !important; }
|
||||
#page { text-align: right !important; }
|
||||
@@ -1,148 +0,0 @@
|
||||
|
||||
/*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 */
|
||||
@@ -1,38 +0,0 @@
|
||||
#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
|
||||
}
|
||||
@@ -1,43 +0,0 @@
|
||||
#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}
|
||||
@@ -1,86 +0,0 @@
|
||||
{*
|
||||
* 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>
|
||||
@@ -1,38 +0,0 @@
|
||||
{*
|
||||
* 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}
|
||||
@@ -1,45 +0,0 @@
|
||||
{*
|
||||
* 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>
|
||||
{if isset($right_column) && !empty($right_column)}
|
||||
<!-- Right -->
|
||||
<div id="right_column" class="column grid_2 omega">
|
||||
{$HOOK_RIGHT_COLUMN}
|
||||
</div>
|
||||
{/if}
|
||||
</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>
|
||||
@@ -1,114 +0,0 @@
|
||||
{*
|
||||
* 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}
|
||||
@@ -1,96 +0,0 @@
|
||||
{*
|
||||
* 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
|
||||
*}
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7 " lang="{$lang_iso}"> <![endif]-->
|
||||
<!--[if IE 7]><html class="no-js lt-ie9 lt-ie8 ie7" lang="{$lang_iso}"> <![endif]-->
|
||||
<!--[if IE 8]><html class="no-js lt-ie9 ie8" lang="{$lang_iso}"> <![endif]-->
|
||||
<!--[if gt IE 8]> <html class="no-js ie9" lang="{$lang_iso}"> <![endif]-->
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{$lang_iso}">
|
||||
<head>
|
||||
<title>{$meta_title|escape:'html':'UTF-8'}</title>
|
||||
{if isset($meta_description) AND $meta_description}
|
||||
<meta name="description" content="{$meta_description|escape:html:'UTF-8'}" />
|
||||
{/if}
|
||||
{if isset($meta_keywords) AND $meta_keywords}
|
||||
<meta name="keywords" content="{$meta_keywords|escape:html:'UTF-8'}" />
|
||||
{/if}
|
||||
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
|
||||
<meta http-equiv="content-language" content="{$meta_language}" />
|
||||
<meta name="generator" content="PrestaShop" />
|
||||
<meta name="robots" content="{if isset($nobots)}no{/if}index,{if isset($nofollow) && $nofollow}no{/if}follow" />
|
||||
<link rel="icon" type="image/vnd.microsoft.icon" href="{$favicon_url}?{$img_update_time}" />
|
||||
<link rel="shortcut icon" type="image/x-icon" href="{$favicon_url}?{$img_update_time}" />
|
||||
<script type="text/javascript">
|
||||
var baseDir = '{$content_dir|addslashes}';
|
||||
var baseUri = '{$base_uri|addslashes}';
|
||||
var static_token = '{$static_token|addslashes}';
|
||||
var token = '{$token|addslashes}';
|
||||
var priceDisplayPrecision = {$priceDisplayPrecision*$currency->decimals};
|
||||
var priceDisplayMethod = {$priceDisplay};
|
||||
var roundMode = {$roundMode};
|
||||
var isUserLogged = {if $logged}true{else}false{/if};
|
||||
</script>
|
||||
{if isset($css_files)}
|
||||
{foreach from=$css_files key=css_uri item=media}
|
||||
<link href="{$css_uri}" rel="stylesheet" type="text/css" media="{$media}" />
|
||||
{/foreach}
|
||||
{/if}
|
||||
{if isset($js_files)}
|
||||
{foreach from=$js_files item=js_uri}
|
||||
<script type="text/javascript" src="{$js_uri}"></script>
|
||||
{/foreach}
|
||||
{/if}
|
||||
{$HOOK_HEADER}
|
||||
</head>
|
||||
<body{if isset($page_name)} id="{$page_name|escape:'html':'UTF-8'}"{/if} class="{if isset($page_name)}{$page_name|escape:'html':'UTF-8'}{/if}{if isset($body_classes) && $body_classes|@count} {implode value=$body_classes separator=' '}{/if}{if $hide_left_column} hide-left-column{/if}{if $hide_right_column} hide-right-column{/if}{if $content_only} content_only{/if}">
|
||||
{if !$content_only}
|
||||
{if isset($restricted_country_mode) && $restricted_country_mode}
|
||||
<div id="restricted-country">
|
||||
<p>{l s='You cannot place a new order from your country.'} <span class="bold">{$geolocation_country}</span></p>
|
||||
</div>
|
||||
{/if}
|
||||
<div id="page" class="container_9 clearfix">
|
||||
<!-- Header -->
|
||||
<div id="header" class="grid_9 alpha omega">
|
||||
<a id="header_logo" href="{$base_dir}" title="{$shop_name|escape:'html':'UTF-8'}">
|
||||
<img class="logo" src="{$logo_url}" alt="{$shop_name|escape:'html':'UTF-8'}"{if $logo_image_width} width="{$logo_image_width}"{/if}{if $logo_image_height} height="{$logo_image_height}"{/if}/>
|
||||
</a>
|
||||
<div id="header_right" class="grid_9 omega">
|
||||
{$HOOK_TOP}
|
||||
</div>
|
||||
</div>
|
||||
{assign var='left_column' value=false}{assign var='right_column' value=false}
|
||||
{if isset($HOOK_LEFT_COLUMN) && $HOOK_LEFT_COLUMN|trim && !$hide_left_column}{$left_column=true}{/if}
|
||||
{if isset($HOOK_RIGHT_COLUMN) && $HOOK_RIGHT_COLUMN|trim && !$hide_right_column}{$right_column=true}{/if}
|
||||
<div id="columns" class="grid_9 alpha omega clearfix">
|
||||
{if isset($left_column) && !empty($left_column)}
|
||||
<!-- Left -->
|
||||
<div id="left_column" class="column grid_2 alpha">
|
||||
{$HOOK_LEFT_COLUMN}
|
||||
</div>
|
||||
{/if}
|
||||
<!-- Center -->
|
||||
<div id="center_column" class=" grid_5">
|
||||
{/if}
|
||||
@@ -1,89 +0,0 @@
|
||||
{*
|
||||
* 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>
|
||||
@@ -1,132 +0,0 @@
|
||||
{*
|
||||
* 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>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 928 B |
|
Before Width: | Height: | Size: 928 B |
|
Before Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 155 B |
|
Before Width: | Height: | Size: 155 B |
|
Before Width: | Height: | Size: 608 B |
|
Before Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 415 B |
|
Before Width: | Height: | Size: 240 B |
|
Before Width: | Height: | Size: 314 B |
|
Before Width: | Height: | Size: 190 B |
|
Before Width: | Height: | Size: 150 B |
|
Before Width: | Height: | Size: 572 B |
|
Before Width: | Height: | Size: 218 B |
|
Before Width: | Height: | Size: 133 B |
|
Before Width: | Height: | Size: 254 B |
|
Before Width: | Height: | Size: 141 B |
|
Before Width: | Height: | Size: 243 B |
|
Before Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 212 B |
|
Before Width: | Height: | Size: 141 B |
|
Before Width: | Height: | Size: 232 B |
|
Before Width: | Height: | Size: 274 B |
|
Before Width: | Height: | Size: 361 B |
|
Before Width: | Height: | Size: 394 B |
|
Before Width: | Height: | Size: 380 B |
|
Before Width: | Height: | Size: 375 B |
|
Before Width: | Height: | Size: 744 B |
|
Before Width: | Height: | Size: 261 B |
|
Before Width: | Height: | Size: 207 B |
|
Before Width: | Height: | Size: 852 B |
|
Before Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 357 B |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 966 B |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 960 B |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 777 B |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 190 B |
|
Before Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 85 B |
|
Before Width: | Height: | Size: 710 B |
|
Before Width: | Height: | Size: 56 B |
|
Before Width: | Height: | Size: 64 B |
|
Before Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 932 B |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |