SuperForm.composite_fields
dict is not longer shared between form instances. Every new form instances get's a deep copy. So changes to it won't leak into other instances of the same form class.
- #11: Fix
CompositeBoundField
to allow direct access to nested form fields viaform['nested_form']['field']
. - Support for Django's Media handling in nested forms. See #3 and #5.
- Do not populate errorlist representations without any errors of nested formsets into the errors of the super form. See #5 for details.
- Django 1.8 support.
- Initial values given to the
__init__
method of the super-form will get passed through to the nested forms. - The
empty_permitted
argument for modelforms used in aModelFormField
is set depending on therequired
attribute given to the field.
- Initial release with proof of concept.