Files
PrestaShop/modules/carriercompare/template/configuration.tpl
T
2012-08-28 13:30:26 +00:00

27 lines
1.1 KiB
Smarty

{if isset($display_error)}
{if $display_error}
<div class="error">{l s='An error occured during the form validation'}</div>
{else}
<div class="conf">{l s='Configuration updated'}</div>
{/if}
{/if}
<form method="post" action="{$smarty.server.REQUEST_URI|escape:'htmlall':'UTF-8'}">
<fieldset>
<div class="warn">{l s='This module is only available on standard order process because on One Page Checkout the carrier list is already available'}.</div>
<legend>{l s='Global Configuration'}</legend>
<label for="refresh_method">Refresh carrier list method</label>
<div class="margin-form">
<select id="refresh_method" name="refresh_method">
<option value="0" {if $refresh_method == 0}selected{/if}>{l s='Anytime'}</option>
<option value="1" {if $refresh_method == 1}selected{/if}>{l s='Required all information set'}</option>
</select>
<p>{l s='Set the way to refresh information for a customer'}</p>
</div>
<div class="margin-form">
<input name="setGlobalConfiguration" type="submit" class="button" value="{l s='Submit'}">
</div>
</fieldset>
</form>