Closed csarcom closed 10 years ago
It should work with this form:
nestedformset_factory(
models.Block,
models.Building,
nested_formset=nestedformset_factory(
models.Building,
models.Tenant,
nested_formset=inlineformset_factory(
models.Tenant,
models.Contact
)
)
)
Perfect! :+1:
It`s possible to have another level of inlines? Something like: