Right now, when nested inputs are produced using inputs_for, the data comes out as follows:
%{
form: %{
form_has_one: %{},
form_has_many_0: %{},
form_has_many_0_belongs_to: %{}
}
}
This produces maps that cannot be used when changing or submitting their forms.
It would be utilitarian to produce:
%{
form: %{
has_one: %{},
has_many: [
%{
belongs_to: %{}
}
]
}
}