nested-formset icon indicating copy to clipboard operation
nested-formset copied to clipboard

Nest Django formsets for multi-level editing.

Results 5 nested-formset issues
Sort by recently updated
recently updated
newest added

Using the demo app as an example, lets say in addition to being able to add residents to each building I also wanted to add utility rooms. Creating another model...

I'm struggling with making it dynamic, like with jquery formsets, but that plugin wont work out of the box, how can I do it then ? thank you

The patterns modules cannot be imported, as deprecated in django 1.8 this file C:\apps\nested-formset\demo\nested_formset_demo\urls.py Documentation here https://docs.djangoproject.com/en/1.9/ref/urls/#patterns I'm running django 1.11

Hi, How do I create nested-formset with `CreateView`? I tried your example. But that code does not show `Employee`'s form. Am I missing something? Thanks Here are my models ```...

I'm trying this way but nested_formset does not accept a queryset. ``` nested_formset=inlineformset_factory( SoaMatrizAcuerdo, SoaMatrizAcuerdoDetalle, queryset =matriz_acuerdo_detalle, fields = ('secuencia_detalle','clave_nivel_academico','clave_area_academica') ) ) ```