﻿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
724	get_next_by_pub_date/get_previous_by_pub_date model methods only see 1 item for each day.	mattycakes@…	Adrian Holovaty	"The model.get_next_by_pub_date() and model.get_previous_by_pub_date() methods appear to only see one item for each day.

For example, I have a blog.posts model in which pub_date is a DateTimeField. If there are multiple posts in one day, the above methods will only see the first post for each day, and then skip to the next day. This is clearly wrong behaviour; the method should retrieve the next item by date whether it was created the same day or not.

Example:
{{{
item1.pub_date = 2005/01/01 12:00
item2.pub_date = 2005/01/02 8:00
item3.pub_date = 2005/01/02 9:00

item1.get_next… = item2
item2.get_next… = None
item3.get_prev… = item1
}}}
"	defect	closed	Core (Other)		minor	fixed			Unreviewed	0	0	0	0	0	0
