Advertisement
valeraplusplus

shop2.v2-cart.order.tpl (ДО) Deligate. Корзина. Доработка валидации поля для ввода города

Apr 3rd, 2023
1,501
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Smarty 19.03 KB | None | 0 0
  1. {include file="global:shop2.v2-order-registration-errors.tpl"}
  2.  
  3. <form action="{$form_action}" method="post" class="shop2-cart-order-form shop2-order-options shop2-order-in-one-page-form shop2-delivery" id="form_g-anketa">
  4. {if $deligate_delivery}
  5.     {if $deligate_use}<script src="https://api-maps.yandex.ru/2.1/?lang=ru_RU"  type="text/javascript"></script>{/if}
  6.     <h2>{#SHOP2_DELIVERY2#}</h2>
  7.     {if $deligate_fields && $deligate_use}
  8.         <div class="shop2-perfect-form" id="shop2-perfect-form">
  9.             <span class="shop2-delivery-step">1</span>
  10.             <span class="shop2-delivery-step-name">{#DELIGATE_DELIVERY_ENTER_CITY#}</span>
  11.             {foreach from=$deligate_fields item=v_field key=k_field}
  12.                     {if $v_field.type == 'textarea'}
  13.                     <div class="option-item">
  14.                         <label>
  15.                             {*<span>{$v_field.name|htmlspecialchars|s3_localize} {if $v_field.required}<span class="required">*</span>{/if}</span>*}
  16.                             <textarea {if $v_field.id}id="{$v_field.id}"{/if} name="options[{$k_field}]" cols="50" rows="5">{strip}{$v_field.value|htmlspecialchars}{/strip}</textarea>
  17.                         </label>
  18.                     </div>
  19.                     {elseif $v_field.type == 'text'}
  20.                     <div class="option-item">
  21.                         <label>
  22.                             {*<span>{$v_field.name|htmlspecialchars|s3_localize} {if $v_field.required}<span class="required">*</span>{/if}</span>*}
  23.                             <div class="suggestions-input--wrapper">
  24.                                 <input {if $v_field.id}id="{$v_field.id}"{/if} name="options[{$k_field}]" type="text" size="{$v_field.size|default:30}" maxlength="{$v_field.maxlength|default:100}" value="{strip}
  25.                                 {$v_field.value|htmlspecialchars}{/strip}" placeholder="{#DELIGATE_DELIVERY_PLACEHOLDER#}" />
  26.                                 <a class="g-button" href="#" id="shop2-deligate-calc">{#DELIGATE_DELIVERY_CHOOSE_BUTTON#}</a>
  27.                             </div>
  28.                         </label>
  29.                     </div>
  30.                     {elseif $v_field.type == 'hidden'}
  31.                             <input {if $v_field.id}id="{$v_field.id}"{/if} name="options[{$k_field}]" type="hidden" value="{strip}{$v_field.value|htmlspecialchars}{/strip}" />
  32.                     {elseif $v_field.type == 'checkbox'}
  33.                             <div class="option-item">
  34.                                 <label>
  35.                                     {*<span>{$v_field.name|htmlspecialchars|s3_localize} {if $v_field.required}<span class="required">*</span>{/if}</span>*}
  36.                                     <input {if $v_field.id}id="{$v_field.id}"{/if} type="checkbox" name="options[{$k_field}]" {if !empty($v_field.value)}checked{/if}/>
  37.                                 </label>
  38.                             </div>
  39.                     {elseif $v_field.type == 'datetime'}
  40.                     <div class="option-item">
  41.                         <label>
  42.                             <span>{$v_field.name|htmlspecialchars|s3_localize} {if $v_field.required}<span class="required">*</span>{/if}</span>
  43.                             <input {if $v_field.id}id="{$v_field.id}"{/if} name="options[{$k_field}]" type="datetime" value="{strip}{$v_field.value|htmlspecialchars}{/strip}" />
  44.                         </label>
  45.                     </div>
  46.                     {/if}
  47.             {/foreach}
  48.         </div>
  49.         {/if}
  50.         <div id="shop2-order-delivery">
  51.             {include file="global:shop2.v2-order-delivery-built_in.tpl" in_cart=$order_in_one_page deligate_use=$deligate_use}
  52.             {if $deligate_use}
  53.             <div class="preloader">
  54.                 <div class="spinner"></div>
  55.             </div>
  56.             {/if}
  57.         </div>
  58. {else}
  59.     {if $deliveries}
  60.         <h2>{#SHOP2_DELIVERY2#}</h2>
  61.         <div class="shop2-order-options shop2-delivery">
  62.             <div class="options-list">
  63.                 {foreach from=$deliveries item=e key=k name="deliveries"}
  64.                     {assign var="cur" value=0}
  65.                     {if $delivery.attach_id}
  66.                         {if $delivery.attach_id == $k}
  67.                             {assign var="cur" value=1}
  68.                         {/if}
  69.                     {elseif $smarty.foreach.deliveries.first}
  70.                         {assign var="cur" value=1}
  71.                     {/if}
  72.                     <div class="option-type {if $cur}active-type{/if}">
  73.                         <label class="option-label">
  74.                             <input name="delivery_id" type="radio" autocomplete="off" {if $cur}checked="checked"{/if}
  75.                                    value="{$k}" />
  76.                             <span>
  77.                                 {$e.name|htmlspecialchars}
  78.  
  79.                                 {if $e.code != 'ems' && $e.code != 'edost'}
  80.                                     {if $e.cost==0}
  81.  
  82.                                         {if $e.delivery_info}
  83.                                             - {$e.delivery_info}
  84.                                         {else}
  85.                                             {if !$shop2.my.hide_delivery_cost}- {#SHOP2_FREE#}{/if}
  86.                                         {/if}
  87.  
  88.                                     {else}
  89.                                         - {$e.cost|price_convert} {$shop2.currency_shortname}
  90.                                     {/if}
  91.  
  92.                                 {/if}
  93.  
  94.                                 {if $e.term}({$e.term}){/if}
  95.                             </span>
  96.                         </label>
  97.                         {if $e.fields|@count}
  98.                             <div class="option-details">
  99.                                 {if $e.code != 'ems' && $e.code != 'edost'}
  100.                                     {if $e.cost!=0}
  101.                                         <p><b>{#SHIPPING_METHOD#}</b><br></p>
  102.                                     {/if}
  103.                                 {/if}
  104.                                 {foreach from=$e.fields item=v_field key=k_field}
  105.                                     {if $v_field.type == 'textarea'}
  106.                                         <div class="option-item">
  107.                                             <label>
  108.                                                 <span>{$v_field.name|htmlspecialchars} {if $v_field.required}
  109.                                                         <span class="required">*</span>
  110.                                                     {/if}</span>
  111.                                                 <textarea name="{$k}[{$k_field}]" {if !$cur}disabled="disabled"{/if}
  112.                                                           cols="50" rows="5" class="shop2-textarea">{strip}
  113.                                                         {if $delivery.attach_id == $k}
  114.                                                         {$delivery[$k_field]|htmlspecialchars}
  115.                                                     {else}
  116.                                                         {$v_field.value}
  117.                                                     {/if}
  118.                                                     {/strip}</textarea>
  119.                                             </label>
  120.                                         </div>
  121.                                     {elseif $v_field.type == 'text'}
  122.                                         <div class="option-item">
  123.                                             <label>
  124.                                                 <span>{$v_field.name|htmlspecialchars} {if $v_field.required}
  125.                                                         <span class="required">*</span>
  126.                                                     {/if}</span>
  127.                                                 <input class="shop2-input" name="{$k}[{$k_field}]" {if !$cur}disabled="disabled" {/if}type="text"
  128.                                                        size="{$v_field.size|default:30}"
  129.                                                        maxlength="{$v_field.maxlength|default:100}" value="{strip}
  130.                                     {if $delivery.attach_id == $k}
  131.                                         {$delivery[$k_field]|htmlspecialchars}
  132.                                     {else}
  133.                                         {$v_field.value}
  134.                                     {/if}
  135.                                 {/strip}" />
  136.                                             </label>
  137.                                         </div>
  138.  
  139.                                     {elseif $v_field.type == 'checkbox'}
  140.                                         {if $e.code == 'ems'}
  141.                                             {if $v_field.display}
  142.                                                 <div class="option-item">
  143.                                                     <label>
  144.                                                         <span>{$v_field.name|htmlspecialchars} {if $v_field.required}<span class="required">*</span>{/if}</span>
  145.                                                         <input type="checkbox" name="{$k}[{$k_field}]" />
  146.                                                     </label>
  147.                                                 </div>
  148.                                             {/if}
  149.                                         {else}
  150.                                             <div class="option-item">
  151.                                                 <label>
  152.                                                     <span>{$v_field.name|htmlspecialchars} {if $v_field.required}<span class="required">*</span>{/if}</span>
  153.                                                     <input type="checkbox" name="{$k}[{$k_field}]" />
  154.                                                 </label>
  155.                                             </div>
  156.                                         {/if}
  157.                                        
  158.                                     {elseif $v_field.type == 'select'}
  159.  
  160.                                     {if $e.code == 'edost'}
  161.                                         <script type="text/javascript" src="/g/s3/shop2/edost/1.0.0/shop2.edost.regions.js"></script>
  162.                                         {capture assign="field_name"}
  163.                                             <span>{$v_field.name|htmlspecialchars} {if $v_field.required}
  164.                                                     <span class="required">*</span>
  165.                                                 {/if}</span>
  166.                                         {/capture}
  167.                                         {if $e.params.countries}
  168.                                             <div class="option-item">
  169.                                                 <label>
  170.                                                     {$field_name}
  171.                                                     {assign var="field_name" value=""}
  172.                                                     {if $shop2.my.gr_select_wrapper}<label class="gr-select-wrapper">{/if}
  173.                                                     <select id="shop2-edost2-country" name="{$k}[country]"
  174.                                                             data-value="{$delivery.country|htmlspecialchars}">
  175.                                                         <option value="default">--{#COUNTRIES#}--</option>
  176.                                                     </select>
  177.                                                     {if $shop2.my.gr_select_wrapper}</label>{/if}
  178.                                                 </label>
  179.                                             </div>
  180.                                         {/if}
  181.                                         {if $e.params.regions}
  182.                                             <div class="option-item">
  183.                                                 <label>
  184.                                                     {$field_name}
  185.                                                     {assign var="field_name" value=""}
  186.                                                     {if $shop2.my.gr_select_wrapper}<label class="gr-select-wrapper">{/if}
  187.                                                     <select id="shop2-edost2-region" name="{$k}[region]"
  188.                                                             data-value="{$delivery.region|htmlspecialchars}">
  189.                                                         <option value="default">--{#REGIONS#}--</option>
  190.                                                     </select>
  191.                                                     {if $shop2.my.gr_select_wrapper}</label>{/if}
  192.                                                 </label>
  193.                                             </div>
  194.                                         {/if}
  195.                                             <div class="option-item">
  196.                                                 <label>
  197.                                                     {$field_name}
  198.                                                     {if $shop2.my.gr_select_wrapper}<label class="gr-select-wrapper">{/if}
  199.                                                     <select id="shop2-edost2-city" name="{$k}[city]"
  200.                                                             data-value="{$delivery.city|htmlspecialchars}">
  201.                                                         <option value="default">--{#SHOP2_CITY#}--</option>
  202.                                                     </select>
  203.                                                     {if $shop2.my.gr_select_wrapper}</label>{/if}
  204.                                                 </label>
  205.                                             </div>
  206.                                             <input type="hidden" id="shop2-edost2-to" name="{$k}[{$k_field}]" value="{$delivery[$k_field]}" />
  207.                                     {else}
  208.                                         {if $e.code == 'ems' && $k_field =='to'}
  209.                                             <div class="option-item">
  210.                                                 <label>
  211.                                                     <span>{$v_field.name|htmlspecialchars} {if $v_field.required}<span class="required">*</span>{/if}</span>
  212.                                                     {if $shop2.my.gr_select_wrapper}<label class="gr-select-wrapper">{/if}
  213.                                                     <select id="delivery-{$k_field}" name="{$k}[{$k_field}]" {if !$cur}disabled="disabled"{/if}>
  214.                                                         <option value="">--{#SHOP2_SELECT_CITY#}--</option>
  215.                                                         {foreach from=$v_field.values item=v_value key=k_value}
  216.                                                             {if is_array($v_value)}
  217.                                                                 <optgroup label="{$k_value}">
  218.                                                                     {foreach from=$v_value item=vv_value key=kk_value}
  219.                                                                         <option {if $delivery[$k_field] == $kk_value}selected="selected"{/if} value="{$kk_value}">{$vv_value|htmlspecialchars}</option>
  220.                                                                     {/foreach}
  221.                                                                 </optgroup>
  222.                                                             {else}
  223.                                                                 <option {if $delivery[$k_field] == $k_value}selected="selected"{/if} value="{$k_value}">{$v_value|htmlspecialchars}</option>
  224.                                                             {/if}
  225.                                                         {/foreach}
  226.                                                     </select>
  227.                                                     {if $shop2.my.gr_select_wrapper}</label>{/if}
  228.                                                 </label>
  229.                                             </div>
  230.                                         {else}
  231.                                             <div class="option-item">
  232.                                                 <label>
  233.                                                     <span>{$v_field.name|htmlspecialchars} {if $v_field.required}<span class="required">*</span>{/if}</span>
  234.                                                     {if $shop2.my.gr_select_wrapper && $v_field.select_type!='multi'}<label class="gr-select-wrapper">{/if}
  235.                                                     <select {if $v_field.select_type=='multi'}multiple{/if} id="delivery-{$k_field}" name="{$k}[{$k_field}][]" {if !$cur}disabled="disabled"{/if}>
  236.                                                         {if $v_field.select_type != 'multi'}<option value="">--{#SHOP2_SELECT_TYPE_SELECT#}--</option>{/if}
  237.                                                         {foreach from=$v_field.select item=v_value key=k_value}
  238.                                                             {if is_array($v_value)}
  239.                                                                 <optgroup label="{$k_value}">
  240.                                                                     {foreach from=$v_value item=vv_value key=kk_value}
  241.                                                                         <option {if in_array($kk_value, $delivery[$k_field])}selected="selected"{/if} value="{$vv_value|htmlspecialchars}">{$vv_value|htmlspecialchars}</option>
  242.                                                                     {/foreach}
  243.                                                                 </optgroup>
  244.                                                             {else}
  245.                                                                 <option {if in_array($v_value, $delivery[$k_field])}selected="selected"{/if} value="{$v_value|htmlspecialchars}">{$v_value|htmlspecialchars}</option>
  246.                                                             {/if}
  247.                                                         {/foreach}
  248.                                                     </select>
  249.                                                     {if $shop2.my.gr_select_wrapper && $v_field.select_type!='multi'}</label>{/if}
  250.                                                 </label>
  251.                                             </div>
  252.                                         {/if}
  253.                                     {/if}
  254.  
  255.                                         {if (($e.code == 'ems' && $k_field == 'to') || $e.code == 'edost') && $v_field.type == 'select'}
  256.                                             <label>
  257.                                                 <a class="shop2-btn" href="#" data-attach-id="{$e.attach_id}" id="shop2-{$e.code}-calc">{#SHOP2_CALCULATE#}</a>
  258.                                                 {if $e.code == 'ems'}
  259.                                                     <span id="delivery-{$e.attach_id}-cost">0</span> {$shop2.currency_shortname}
  260.                                                 {/if}
  261.                                             </label>
  262.                                         {/if}
  263.                                     {/if}
  264.                                 {/foreach}
  265.  
  266.                                 {if $e.code == 'edost'}
  267.                                     <div id="delivery-{$e.attach_id}-html">
  268.                                         {include file="global:shop2.v2-order-delivery-edost.tpl" edost=$e.edost attach_id=$e.attach_id}
  269.                                     </div>
  270.                                 {/if}
  271.                             </div>
  272.                         {/if}
  273.                     </div>
  274.                 {/foreach}
  275.             </div>
  276.         </div>
  277.     {/if}
  278. {/if}
  279. {if $site.reg.shop2.order_design=="6"}
  280.     <div class="shop2-cart-order-payments shop2-order-options shop2-payment-options"{if $payment_id} data-payment_id="{$payment_id}"{/if}>
  281.        
  282.         {if $change_ps}
  283.             {include file="global:shop2.v2-cart.order-payments.tpl"}
  284.         {/if}
  285.     </div>
  286. {/if}
  287.     {if $form}
  288.         <h2>{#SHOP2_ORDER_FORM#}</h2>
  289.         <div class="shop2-order-form shop2-order-form--offset-left">
  290.             {if $on_order_registration}
  291.                 {if $on_order_registration.user_exists}
  292.                 <input type="hidden" name="user_exists" value="1" />
  293.                 {/if}
  294.             {/if}
  295.  
  296.             {foreach from=$form key=name item=item}
  297.  
  298.                 {capture assign="caption"}
  299.                     <strong>
  300.                         {$item.name|htmlspecialchars}
  301.                         {if $item.required}<span class="required">*</span>{/if}
  302.                     </strong>
  303.                 {/capture}
  304.  
  305.                 <div class="form-item{if $item.type == 'captcha'} form-item__captcha{elseif $item.type == 'personal_data'} form-item__personal_data{if $shop2.my.gr_checkbox_fix} gr-field-style{/if}{/if}">
  306.                     {if $item.type == 'text' || $item.type == 'email' || $item.type == 'phone'}
  307.                         <label>
  308.                             {$caption}
  309.                             <input{if $item.placeholder != ""} placeholder="{$item.placeholder|escape}"{/if} type="text" maxlength="{$item.maxlength|default:100}" size="{$item.size|default:50}"
  310.                                    name="order[{$name}]" id="user_{$name}" value="{$item.value|htmlspecialchars}" class="shop2-input" />
  311.                         </label>
  312.                     {elseif $item.type == 'textarea'}
  313.                         <label>
  314.                             {$caption}
  315.                             <textarea{if $item.placeholder != ""} placeholder="{$item.placeholder|escape}"{/if} rows="{$item.rows|default:7}" cols="{$item.cols|default:50}" name="order[{$name}]"
  316.                                       id="user_{$name}" class="shop2-textarea">{$item.value}</textarea>
  317.                         </label>
  318.                     {elseif $item.type == 'radio'}
  319.  
  320.                         {$caption}
  321.                         {foreach from=$item.values key=key item=val}
  322.                             <label class="order-form-options">
  323.                                 <input type="radio" name="order[{$name}]"
  324.                                        value="{$key}"{if $key==$item.value} checked="checked"{/if} /> {$val}
  325.                             </label>
  326.                         {/foreach}
  327.  
  328.                     {elseif $item.type == 'checkbox'}
  329.  
  330.                         {*$caption*}
  331.                         {foreach from=$item.values key=key item=val name=foo}
  332.                             <div class="order-form-options">
  333.                                 <label>
  334.                                     <input type="checkbox" name="order[{$name}][{$key|htmlspecialchars}]"
  335.                                            value="{$key|htmlspecialchars}"
  336.                                            {if $key == $item.value}checked="checked"{/if} /> {if $item.link}<a href="{$item.link}" target="_blank">{/if}{$val|htmlspecialchars}{if $item.link}</a>{/if}
  337.                                 </label>
  338.                             </div>
  339.                         {/foreach}
  340.  
  341.                     {elseif $item.type == 'multi_checkbox'}
  342.  
  343.                         {$caption}
  344.                         {foreach from=$item.values key=key item=val name=foo}
  345.                             <div class="order-form-options">
  346.                                 <label>
  347.                                     <input type="checkbox" name="order[{$name}][{$key|htmlspecialchars}]"
  348.                                            value="{$key|htmlspecialchars}" {if isset($item.value[$key])} checked="checked"{/if} /> {$val|htmlspecialchars}
  349.                                 </label>
  350.                             </div>
  351.                         {/foreach}
  352.  
  353.                     {elseif $item.type == 'select'}
  354.                         <label>
  355.                             {$caption}
  356.                             {if $shop2.my.gr_select_wrapper}<label class="gr-select-wrapper">{/if}
  357.                             <select name="order[{$name}]">
  358.                                 {foreach from=$item.values key=key item=val}
  359.                                     <option value="{$key}" {if $key == $item.value} selected="selected"{/if}>{$val}</option>
  360.                                 {/foreach}
  361.                             </select>
  362.                             {if $shop2.my.gr_select_wrapper}</label>{/if}
  363.                         </label>
  364.                     {elseif $item.type == 'multiselect'}
  365.                         <label>
  366.                             {$caption}
  367.                             <select name="order[{$name}][]" multiple="multiple" size="{$item.size|default:5}">
  368.                                 {foreach from=$item.values key=key item=val}
  369.                                     <option value="{$key}"{if in_array($key, $item.value)} selected="selected"{/if}>{$val}</option>
  370.                                 {/foreach}
  371.                             </select>
  372.                         </label>
  373.                     {elseif $item.type == 'date'}
  374.                         <label>
  375.                             {$caption}
  376.                             <span>
  377.                                 <input type="text" size="15" readonly="readonly" value="{$item.value|escape}" name="order[{$name}]" id="user_{$name}" class="init-calendar" />
  378.                             </span>
  379.                         </label>
  380.                     {elseif $item.type == 'captcha'}
  381.                         <label>
  382.                             {$caption}
  383.                             {captcha name=$name}
  384.                         </label>
  385.                     {elseif $item.type == 'personal_data'}
  386.                         {if !$shop2.my.gr_checkbox_fix}
  387.                             <label>
  388.                                 <input type="checkbox" name="order[{$name}]" value="1" autocomplete="off" {if $item.value}checked{/if} />
  389.                                 {$item.name}
  390.                                 {if $item.required}<span class="required">*</span>{/if}
  391.                             </label>
  392.                         {else}
  393.                             <div class="tpl-field type-checkbox">
  394.                                 <ul class="menu-default">
  395.                                     <li>
  396.                                         <label>
  397.                                             <input class="gr-fixed-checkbox" type="checkbox" name="order[{$name}]" value="1" autocomplete="off" {if $item.value}checked{/if} />
  398.                                             <span>{$item.name} {if $item.required}<ins class="required">*</ins>{/if} <a href="{$user_settings.link}?mode=agreement" target="_blank">{#SHOP2_MORE#}</a></span>
  399.                                         </label>
  400.                                     </li>
  401.                                 </ul>
  402.                             </div>
  403.                         {/if}
  404.                        
  405.                         {*{if !$shop2.my.personal_data_no_brackets}({/if}<a href="#" onclick="return hs.htmlExpand(this, {ldelim}contentId:'order-personal-data-agreement', wrapperClassName: 'draggable-header', align: 'center', width: 600, height: 400{rdelim})">{#DETAILS#}</a>{if !$shop2.my.personal_data_no_brackets}){/if}
  406.                         <div class="highslide-html-content" id="order-personal-data-agreement">
  407.                             <div class="highslide-header">
  408.                                 <ul>
  409.                                     <li class="highslide-close"><a href="#" title="Close (esc)" onclick="return hs.close(this)"></a></li>
  410.                                 </ul>
  411.                             </div>
  412.                             <div class="highslide-body">{$item.text}</div>
  413.                         </div>*}
  414.                     {elseif $item.type == 'on_order_registration'}             
  415.                         <label>
  416.                             <input type="checkbox" name="order[{$name}]" value="1" autocomplete="off" {if $item.value}checked{/if} />
  417.                             {$item.name|s3_localize|htmlspecialchars}
  418.                             {if $item.required}<span class="required">*</span>{/if}
  419.                         </label>
  420.                     {/if}
  421.  
  422.                     {if $item.note}
  423.                         <small>{$item.note}</small>
  424.                     {/if}
  425.                 </div>
  426.             {/foreach}
  427.  
  428.         </div>
  429.         <script src="/shared/misc/calendar.gen.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  430.     {/if}
  431.  
  432.     <div class="form-item form-item-submit">
  433.         <button type="submit" class="{if $shop2.my.on_shop2_btn}shop2-btn{else}g-button{/if}">{#SHOP2_CHECKOUT#}</button>
  434.     </div>
  435. </form>
  436.  
  437. {if $deligate_delivery}
  438.     {if $deligate_use}
  439.     <script type="text/javascript" src="/g/shop2v2/default/js/jquery.suggestions.js"></script>
  440.     {literal}
  441.     <script type="text/javascript">
  442.         $("#address").suggestions({
  443.             serviceUrl: "/my/s3/xapi/public/?method=deligate/suggestAddress",
  444.             type: "ADDRESS",
  445.             onSelect: function(suggestion) {
  446.                 shop2.delivery.selectSuggestion(suggestion.unrestricted_value);
  447.             },
  448.             onSelectNothing: function(suggestion) {
  449.                 $("#address").focus();
  450.             }
  451.         });
  452.     </script>
  453.     {/literal}
  454.     {/if}
  455. {/if}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement