﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
26439	"ModelForm.save() should accept the ""using"" keyword argument"	Andreas Poisel	nobody	"`Model.save()` accepts the `using` keyword argument to explicitly chose a database connection.  `ModelForm.save()` should offer the same functionality:

File ''django/forms/models.py'':
{{{
def save(self, commit=True, using=None):
    if self.errors:
        raise ValueError(
            ""The %s could not be %s because the data didn't validate."" % (
                self.instance._meta.object_name,
                'created' if self.instance._state.adding else 'changed',
            )
        )
    if commit:
        # If committing, save the instance and the m2m data immediately.
        self.instance.save(using=using)
        self._save_m2m()
    else:
        # If not committing, add a method to the form to allow deferred
        # saving of m2m data.
        self.save_m2m = self._save_m2m
    return self.instance
}}}
"	New feature	closed	Forms	1.9	Normal	wontfix			Unreviewed	0	0	0	0	1	0
