diff options
| author | Brian Rosner <brosner@gmail.com> | 2008-11-01 22:25:41 +0000 |
|---|---|---|
| committer | Brian Rosner <brosner@gmail.com> | 2008-11-01 22:25:41 +0000 |
| commit | 83af0b8ff355698a3aa436bad851156c9619f7ee (patch) | |
| tree | 5e3fde686b7f9fd70f5997c5f7d1054dedb6963f | |
| parent | 1f69b11ef534bef2a837870cd59cd9cd658aec3d (diff) | |
Fixed #9494 -- Ensure the foreign key in an inline formset is always present on the forms. Thanks Fugazi for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9326 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/forms/models.py | 7 | ||||
| -rw-r--r-- | tests/modeltests/model_formsets/models.py | 15 |
2 files changed, 22 insertions, 0 deletions
diff --git a/django/forms/models.py b/django/forms/models.py index 7f49324ff7..99f7ef5bfb 100644 --- a/django/forms/models.py +++ b/django/forms/models.py @@ -539,6 +539,13 @@ def inlineformset_factory(parent_model, model, form=ModelForm, # enforce a max_num=1 when the foreign key to the parent model is unique. if fk.unique: max_num = 1 + if fields is not None: + fields = list(fields) + fields.append(fk.name) + else: + # get all the fields for this model that will be generated. + fields = fields_for_model(model, fields, exclude, formfield_callback).keys() + fields.append(fk.name) kwargs = { 'form': form, 'formfield_callback': formfield_callback, diff --git a/tests/modeltests/model_formsets/models.py b/tests/modeltests/model_formsets/models.py index 4bf7b40eae..8e28e6fccd 100644 --- a/tests/modeltests/model_formsets/models.py +++ b/tests/modeltests/model_formsets/models.py @@ -696,6 +696,21 @@ False >>> formset.errors [{'__all__': [u'Revision with this Repository and Revision already exists.']}] +# unique_together with inlineformset_factory with overridden form fields +# Also see #9494 + +>>> FormSet = inlineformset_factory(Repository, Revision, fields=('revision',), extra=1) +>>> data = { +... 'revision_set-TOTAL_FORMS': '1', +... 'revision_set-INITIAL_FORMS': '0', +... 'revision_set-0-repository': repository.pk, +... 'revision_set-0-revision': '146239817507f148d448db38840db7c3cbf47c76', +... 'revision_set-0-DELETE': '', +... } +>>> formset = FormSet(data, instance=repository) +>>> formset.is_valid() +False + # Use of callable defaults (see bug #7975). >>> person = Person.objects.create(name='Ringo') |
