On Mon, 2009-02-02 at 00:16 -0800, Simon Westphahl wrote:
> Hi,
> 
> I'm getting the following 404 when accessing an objects detail page.
> 
> ###
> Page not found (404)
> Request Method: GET
> Request URL: http://127.0.0.1:8000/offers/service/testservice/
> 
> No <django.utils.functional.__proxy__ object at 0x87f43cc> found
> matching the query

Hmm ... that error message is a bug. It should display the real verbose
name there. I just looked at the source, and Django's doing that
incorrectly. We should fix that. The message is correct, it just
shouldn't display the functional.__proxy__ stuff -- it should display
the verbose name.

> ###
> 
> This seems a little strange to me since the object overview works like
> a charm.
> I'm using this urly.py for my app: http://dpaste.com/115521/
> 
> The queryset passed to 'extra_context' has to be a python function as
> mentioned in the django generic views documentation, since i want to
> get a queryset that is always fresh (This works!)
> Does this also apply to the 'service_detail' dict passed to the
> 'object_list' generic view?
> It seems as if the the queryset is outdated and only evaluated once?

Have you verified that an object exists for whatever the slug value is
that you're passing in? Using Django's debug page, you should be able to
see the slug value and try it out at a Python prompt. That would be the
first step.

On the surface, your code looks fine. The queryset is cloned each time
the generic view is called, which causes it to be refreshed, so that
shouldn't be an issue. I suggest you start debugging from the error
message: why is nothing matching the query (remember that it's
performing a "get()" based on the slug, so that's why you're getting an
ObjectDoesNotExist exception).

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 
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