﻿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
15875	F() example in db queries topic guide has an error	Jeff Blaine	nobody	"http://docs.djangoproject.com/en/1.3/topics/db/queries/#filters-can-reference-fields-on-the-model

I'm thinking this is incorrect.  The F() object references the pingback count, no?


{{{
For example, to find a list of all blog entries that have had more comments than
pingbacks, we construct an F() object to reference the comment count, and use
that F() object in the query:

>>> from django.db.models import F
>>> Entry.objects.filter(n_comments__gt=F('n_pingbacks'))
}}}
"	Bug	closed	Documentation	1.3	Normal	fixed			Ready for checkin	1	0	0	0	1	0
