﻿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
22597	update the inlineformset_factory example to include extra	saurabh.hirani@…	nobody	"Hi,

>>> from django.forms.models import inlineformset_factory
>>> BookFormSet = inlineformset_factory(Author, Book)
>>> author = Author.objects.get(name='Mike Royko')
>>> formset = BookFormSet(instance=author)

should have 

 BookFormSet = inlineformset_factory(Author, Book, extra=0)

as deafult value of extra is 3. "	Cleanup/optimization	closed	Documentation	1.6	Normal	wontfix	inlineformset		Unreviewed	0	0	0	0	0	0
