blob: c4f67566b4ded9eed78418c666221e6adc85cf8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<div class="form-group">
{formlabel label="Contact Types"}
{forminput}
{foreach from=$gContent->mInfo.contact_type_list item=type}
<label class="checkbox-inline">
<input type="checkbox" name="contact_types[]" value="{$type.item|escape}"{if $type.checked} checked="checked"{/if} /> {$type.name|escape}
</label>
{/foreach}
{/forminput}
<div class="clear"></div>
</div>
|