Hello, I'm trying to know the callback name after a resolve process from django.conf import settings from django.http import HttpResponse from django.core.urlresolvers import resolve
class AuthorizedMiddleware(object): def process_request(self, request): return HttpResponse(str( resolve(request.path)[0].__name__ )) however always I've got a "_wrapped_view" name. Is there a way to find out, for example if my request.path is one/ to get app_one.idex as a string? (r'^one/$', 'app_one.index'), (r'^two/$', 'app_two.index'), Regards! PS: I sent the same message one to django-developers but they kicked me here :-) I hope you can help me now... if you please. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---