On 8/31/07, Udi <[EMAIL PROTECTED]> wrote: > I see the request object has > 'REMOTE_USER': self._req.user, > in meta, but I'm getting None there despite the fact that only > authenticated users are using my site. Am I looking in the wrong > place? Is there any way to get this info into the email?
REMOTE_USER is the HTTP-level information and lives in the request.META dictionary. You'd want to be looking in 'request.user' to find the Django-level information about the user. -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---