another way is to use the javascript Bookmarklet.  go to Documentation
> Bookmarklets


also the debug footer
http://www.djangosnippets.org/snippets/766/
is very useful,

I just added in the code erik allik posted:

        from django.core.urlresolvers import resolve
        view_func, args, kwargs = resolve(request.META['PATH_INFO'])
        view =  '%s.%s' % (view_func.__module__, view_func.__name__)


now the debug footer always shows the view used



On Oct 12, 8:38 pm, shabda <[EMAIL PROTECTED]> wrote:
> One of my views is returning a Http404, and I think it is calling a
> view function diffrent from what I am expecting to be called.
>
> So How can I check which view is being called in response to a
> specific Url?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to