#foreach($key in $resultMap.keySet())
#set($itemList = $resultMap.get($key))
#foreach($field in $itemList)
#if($field.type == 'input')
#elseif($field.type == 'number')
#elseif($field.type == 'textarea')
#elseif($field.type == 'select')
#if($field.options.optionItemsDictType)
#else
0
#end
#elseif($field.type == 'radio')
#if($field.options.optionItemsDictType)
{{ item.label }}
#end
#elseif($field.type == 'checkbox')
#if($field.options.optionItemsDictType)
#else
#end
#elseif($field.type == 'date')
#elseif($field.type == 'time')
#elseif($field.type == 'file-upload')
#elseif($field.type == 'picture-upload')
#elseif($field.type == 'rich-editor')
#elseif($field.type == 'switch')
#elseif($field.type == 'rate')
#elseif($field.type == 'slider')
#elseif($field.type == 'color')
#elseif($field.type == 'static-text' || $field.type == 'html-text')
{{form.${field.options.name}}}
#elseif($field.type == 'divider')
#else
#end
#end
#end