{* Template to display config options used by setup.tpl and profile.tpl $Id: options.tpl,v 1.6 2006/11/11 15:53:44 andig2 Exp $ *} {foreach from=$setup item=option} {if !empty($option.group)}

{$lang[$option.group]}

{else} {$option.hl}
{if $option.type == 'text'} {/if} {if $option.type == 'boolean'} {html_checkbox name=$option.name id=$option.name value=1 checked=$option.set} {/if} {if $option.type == 'dropdown'} {html_options name=$option.name options=$option.data selected=$option.set} {/if} {if $option.type == 'multi'} {/if} {if $option.type == 'special'} {$option.data} {/if} {if $option.type == 'link'} {$option.hl} {/if} {$option.help} {if !empty($option.thumbs)} {include file="options_thumbs.tpl"} {/if} {/if} {/foreach}