Código Python:
Ver originaltest_nested = nestedformset_factory(
parent_model=Product,
model=ChildItem,
nested_formset=inlineformset_factory(
parent_model=ChildItem,
model=ChildItemChild,
form=ChildItemChildModelForm,
extra=1
),
form=ProductModelForm,
extra=1
)
hasta aqui todo bien creo la vista como dice en el tutorial y el
repo github
en la vista tengo este codigo pero cuando intento guardar me dice
Código:
[u'ManagementForm data is missing or has been tampered with']
Código Python:
Ver originalif request.method == "POST":
form =ProductForm(
data=request.POST
)
if form.is_valid():
project = form.save()
inline_nested = inline_nested_test(instance=project,data=request.POST)
if inline_nested.is_valid():
inline_nested.save()