#foreach($column in $columns)
#set($field=$column.javaField)
#if($column.insert && !$column.pk)
#if(($column.usableColumn) || (!$column.superColumn))
#set($parentheseIndex=$column.columnComment.indexOf("("))
#if($parentheseIndex != -1)
#set($comment=$column.columnComment.substring(0, $parentheseIndex))
#else
#set($comment=$column.columnComment)
#end
#set($dictType=$column.dictType)
#if($column.htmlType == "input")
#elseif($column.htmlType == "imageUpload")
#elseif($column.htmlType == "fileUpload")
#elseif($column.htmlType == "editor")
#elseif($column.htmlType == "select" && "" != $dictType)
#elseif($column.htmlType == "select" && $dictType)
#elseif($column.htmlType == "checkbox" && "" != $dictType)
#elseif($column.htmlType == "checkbox" && $dictType)
#elseif($column.htmlType == "radio" && "" != $dictType)
#elseif($column.htmlType == "radio" && $dictType)
#elseif($column.list && $column.htmlType == "time")
{{form.${field}}}
#elseif($column.list && $column.htmlType == "date")
#elseif($column.list && $column.htmlType == "datetime")
#elseif($column.htmlType == "textarea")
#end
#end
#end
#end