{{define "form_integration"}} {{$i := .Get}}
{{if $i.ShortName}}

{{$i.ShortName}}

{{end}} {{if $i.Description}}

{{safe $i.Description}}

{{end}} {{range $i.Fields}}
{{if eq .Type "textarea"}} {{else if eq .Type "text"}} {{else if eq .Type "password"}} {{else if eq .Type "integer"}} {{else if eq .Type "file"}} {{end}} {{if .Description}} {{safe .Description}} {{end}}
{{end}}
{{end}}