On Mon, 2008-06-30 at 16:53 -0700, Milan Andric wrote: > > > On Jun 30, 3:32 pm, Milan Andric <[EMAIL PROTECTED]> wrote: > > On Jun 30, 3:08 pm, "Scott Moonen" <[EMAIL PROTECTED]> wrote: > > > > > Hi Milan, would you mind posting the source for the object_list function > > > as > > > well? > > > > I just imported object_list from django.views.generic.list_detail. > > > > One oddity I think I picked out of the html traceback was in > /foobar/django/db/models/query.py in filter > return self._filter_or_exclude(False, *args, **kwargs) > > self is a list of ALL the User objects. Not sure what is causing all > that stuff to be pulled through a seemingly simple view.
I haven't looked at this in detail yet, but I thought I'd head of any mid-diagnosis here. It looks more like "self" is a queryset. The debug view shows the repr() of each object and the repr() of a queryset if the list containing each object. So I'd guess "self" is something like User.objects.filter(...). Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---