Files
OMS/app/desktop/view/system/curlist.html
2025-12-28 23:13:25 +08:00

19 lines
650 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
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>