setting.html 1.3 KB

12345678910111213141516171819202122232425
  1. {include file="public/header" /}
  2. <div class="page">
  3. <form id="setting_form" method="post">
  4. <table class="ds-default-table">
  5. <tbody>
  6. <tr class="noborder">
  7. <td class="required w150"><label class="validation" for="promotion_booth_price">{$Think.lang.chain_is_open}{$Think.lang.ds_colon}</label></td>
  8. <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>
  9. <label for="site_status0" class="cb-disable {if $list_setting.chain_isuse == '0'}selected{/if}" ><span>{$Think.lang.ds_close}</span></label>
  10. <input id="site_status1" name="chain_isuse" {if $list_setting.chain_isuse == '1'}checked="checked"{/if} value="1" type="radio">
  11. <input id="site_status0" name="chain_isuse" {if $list_setting.chain_isuse == '0'}checked="checked"{/if} value="0" type="radio"></td>
  12. <td class="vatop tips"></td>
  13. </tr>
  14. </tbody>
  15. <tfoot>
  16. <tr class="tfoot">
  17. <td colspan="15"><input class="btn" type="submit" value="{$Think.lang.ds_submit}"/></td>
  18. </tr>
  19. </tfoot>
  20. </table>
  21. </form>
  22. </div>