{{ define "form_input_array" }} {{ $root := . }} {{ $fullProperty := getFullProperty .Parent .Property }} {{ $values := getValue .Values $fullProperty }} {{ range $index, $value := $values }} {{ $itemFullProperty := printf "%s/%d" $fullProperty $index }} {{ $itemProperty := printf "%d" $index }} {{ $itemSchema := getItemSchema $root.Schema }} {{ $formItemData := formItemData $root $itemProperty $itemSchema }} {{ template "form_row" $formItemData }} {{end}}

{{ end }}