﻿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
7005	add orphans support for object_list pagination	shadfc	shadfc	"When the new Paginator support was added to the object_list generic view, support for the orphans feature was left out. This could be enabled simply by including the orphans key in the dictionary passed to the view. It would, of course, only be used when the view is paginated.


{{{

info_dict = {
    'queryset' : Model.objects.all(),
    'paginate_by' : 10,
    'orphans' : 3,
}
}}}

Given this example, up to 13 objects would be included on a page, instead of only a hard limit of 10."	New feature	closed	Generic views	dev	Normal	fixed	orphans object_list paginator	dima@…	Accepted	1	0	1	1	0	0
