Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<span style="font-size:12px;">{$currencies[i].Name}</span>
{* currency type selection form *}
<form method=post name='ChangeCurrencyForm'>
{literal}
<script language='JavaScript'>
function _changeCurrency()
{
document.ChangeCurrencyForm.submit();
}
</script>
{/literal}
<!-- <font class="lightsmall">{$smarty.const.STRING_SELECT_CURRENCY_TYPE}</font><br>-->
<select name='current_currency' onchange='JavaScript:_changeCurrency()'>
{section name=i loop=$currencies}
<option value='{$currencies.CID}'
{if $currencies.CID eq $current_currency}
selected
{/if}
>
<span style="font-size:18px;">{$currencies.Name}</span>
</option>
{/section}
</select>
</form>
<select class="bbcodes" name='current_currency' onchange='JavaScript:_changeCurrency()'>
<option value='1'
>
Доллары
</option>
<option value='2'
>
Евро
</option>
<option value='3'
>
Рубли
</option>
<option value='4'