Code
@register.inclusion_tag('template.html', takes_context=True)
def include_client_side_bar(context):
return {
'STATIC_URL': settings.STATIC_URL,
}
My code is will be something like this, I want to access request.user object inside this function, but I can't get it.
In the debugger, I can see these variables.

As far as I can recall, I have made this successfully in django 1.3, did I miss something?