Ahh, the authentication documentation (http://www.djangoproject.com/
documentation/authentication/) mentions that you need use
RequestContext to get user and perms in your template. We were simply
passing request.user into our template to get user information.
Here's how you do it. In your view
from django.template import RequestContext
return render_to_response("mytemplate.html",
context_instance=RequestContext(request))
Works for me!
On Mar 13, 11:53 pm, "masuran" <[EMAIL PROTECTED]> wrote:
> I'm going to download the development version and try that one out,
> might do the trick :)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---