request.user is User model object.
You cannot access request object in template if you do not pass request explicitly.
If you want access user object from template, you should pass it to template or use RequestContext.
request.user is User model object.
You cannot access request object in template if you do not pass request explicitly.
If you want access user object from template, you should pass it to template or use RequestContext.