Hi,

On Thu, Jan 28, 2010 at 9:08 PM, phred78 <phre...@gmail.com> wrote:
> The problem is that it will list ALL categories, whereas I only want
> it to show a list of categories with products associated with it. I've
> tried many combinations of .filter() and .exclude() but with no
> success.
> Can someone please point me in the right direction?

Perhaps you could try:

def products(request):
    category_list = Category.objects.filter(product__isnull=False)
    # ...

Regards,
Eugene Wee

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to