﻿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
8214	Filtering a date/time field omits results.	redwyrm	nobody	"If the pub_date of an poll is today, then it ought to show up when I click Today or This month, but it isn't. It only shows up when I click Any date, Past 7 days, or This year.

My Poll model:
{{{
class Poll(models.Model):
    question = models.CharField(max_length=200)
    pub_date = models.DateTimeField('date published')
    #...
}}}

And my PollAdmin model:
{{{
class PollAdmin(admin.ModelAdmin):
    fieldsets = [
        (None, {'fields': ['question']}),
        ('Date information', {'fields': ['pub_date'], 'classes': ['collapse']}),
    ]
    inlines = [ChoiceInline]
    list_display = ('question', 'pub_date', 'was_published_today')
    list_filter = ['pub_date']

admin.site.register(Poll, PollAdmin)
}}}

Current date is August 10th, 2008...
Screenshot when filtering by ""Any date"": [http://i38.tinypic.com/ayzdf.jpg]
Screenshot when filtering by ""Today"": [http://i33.tinypic.com/2342ut.png]

My database backend is SQLite3."		closed	contrib.admin	dev		fixed	aug22sprint		Accepted	1	0	1	0	0	0
