Ver Mensaje Individual
  #5 (permalink)  
Antiguo 08/08/2014, 22:01
minimal
 
Fecha de Ingreso: diciembre-2011
Mensajes: 408
Antigüedad: 12 años, 10 meses
Puntos: 18
Respuesta: django formsets de forma nested

Código Python:
Ver original
  1. test_nested = nestedformset_factory(
  2.     parent_model=Product,
  3.     model=ChildItem,    
  4.     nested_formset=inlineformset_factory(
  5.             parent_model=ChildItem,
  6.             model=ChildItemChild,
  7.             form=ChildItemChildModelForm,
  8.             extra=1
  9.         ),
  10.     form=ProductModelForm,
  11.     extra=1
  12.     )

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 original
  1. if request.method == "POST":
  2.     form =ProductForm(
  3.         data=request.POST
  4.         )
  5.     if  form.is_valid():
  6.         project = form.save()
  7.         inline_nested = inline_nested_test(instance=project,data=request.POST)
  8.  
  9.         if inline_nested.is_valid():          
  10.             inline_nested.save()