platfrom.html 789 B

1234567891011121314151617181920
  1. <{include file="./admin/header.html"}>
  2. <{include file="./admin/left.html"}>
  3. <{include file="./admin/nav.html"}>
  4. <{if $errMsg.ok == 1}>
  5. <div class="tip_message_success">设置平台列表成功</div>
  6. <{/if}>
  7. <form method="post" action="<{$web_cfg.domain}>/?c=admin_backUser&a=SetPlatfrom&uid=<{$user.uid}>" style="">
  8. <div class="form-group">
  9. <label class="control-label">“<{$user.name}>” 列表设置:</label>
  10. <div>
  11. <{foreach from=$platfrom item=item}>
  12. <label class="checkbox-inline"><input name="platfrom[]" type="checkbox" value="<{$item.id}>" <{if $item.id|in_array:$user.platfrom }>checked<{/if}> > <{$item.name}></label>
  13. <{/foreach}>
  14. </div>
  15. </div>
  16. <button class="button button-primary button-small">保存</button>
  17. </form>
  18. <{include file="./admin/bottom.html"}>