﻿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
15575	MultipleObjectMixin.paginate_queryset always returns is_paginated=True	i.virabyan@…	Ivan Virabyan	"Documentation says:

is_paginated: A boolean representing whether the results are paginated. Specifically ... if the available objects do not span multiple pages.

But is_paginated is True even when objects do not span multiple pages.

{{{
def paginate_queryset(self, queryset, page_size):
    ...
    return (paginator, page, page.object_list, True)
}}}

As you can see, it always sets the last element of tuple to True, which is value for is_paginated."		closed	Generic views	dev		fixed	blocker		Accepted	1	0	1	1	0	0
