12345678910111213141516171819202122232425 |
- {include file="public/header" /}
- <div class="page">
- <form id="setting_form" method="post">
- <table class="ds-default-table">
- <tbody>
- <tr class="noborder">
- <td class="required w150"><label class="validation" for="promotion_booth_price">{$Think.lang.chain_is_open}{$Think.lang.ds_colon}</label></td>
- <td class="vatop rowform onoff"><label for="site_status1" class="cb-enable {if $list_setting.chain_isuse == '1'}selected{/if}" ><span>{$Think.lang.ds_open}</span></label>
- <label for="site_status0" class="cb-disable {if $list_setting.chain_isuse == '0'}selected{/if}" ><span>{$Think.lang.ds_close}</span></label>
- <input id="site_status1" name="chain_isuse" {if $list_setting.chain_isuse == '1'}checked="checked"{/if} value="1" type="radio">
- <input id="site_status0" name="chain_isuse" {if $list_setting.chain_isuse == '0'}checked="checked"{/if} value="0" type="radio"></td>
- <td class="vatop tips"></td>
- </tr>
- </tbody>
- <tfoot>
- <tr class="tfoot">
- <td colspan="15"><input class="btn" type="submit" value="{$Think.lang.ds_submit}"/></td>
- </tr>
- </tfoot>
- </table>
- </form>
- </div>
|