clipbucket/upload/styles/cbv3/layout/common/form_field.html
2012-12-23 19:54:30 +00:00

16 lines
No EOL
545 B
HTML

<div class="control-group">
{if $show_title!='no'}
<label class="control-label" for="{$field.id}">{$field.title}</label>
{/if}
<div class="controls">
{if $field.hint_before}
<span class="help-block">{$field.hint_before}</span>
{/if}
{ANCHOR place=$field.anchor_before}
{$formObj->createField($field)}
{ANCHOR place=$field.anchor_after}
{if $field.hint_after}
<span class="help-block">{$field.hint_after}</span>
{/if}
</div>
</div>