On 5/9/06, tomass <[EMAIL PROTECTED]> wrote:
>
> The subject says it, really. Is there any way to access the
> request.user in the urls.py.

Nope, and there won't be due to decoupling and all. I'd recommend
creating your own view that just wraps the generic view. Something
like this:

from django.views.generic import whatever_generic_view
def myview(request, #other args):
    uid = request.user.id
    # do whatever with uid
    return whatever_generic_view(request, #other args)

Joseph

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

Reply via email to