mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-30 21:15:34 +08:00
19 lines
650 B
HTML
19 lines
650 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<form action="index.php?ctl=currency&act=seldefault" method="post">
|
||
<table>
|
||
<{foreach from=$currency item=cur}>
|
||
<tr onclick="$E('input',this).checked=true" style="cursor: default;">
|
||
<th><input <{if $cur.cur_code eq $defalt_currency}>checked="checked"<{/if}> type="radio" name="default_cur" value="<{$cur.cur_code}>" /></th>
|
||
<td><{$cur.cur_name}></td>
|
||
<td><{$cur.cur_rate}></td>
|
||
</tr>
|
||
<{/foreach}>
|
||
</table>
|
||
<div style="padding:10px;text-align:center">
|
||
<input type="submit" value="<{t}>提交保存<{/t}>" />
|
||
</div>
|
||
</form> |