7
votes
In Django, is it possible to access the current user session from within a custom tag?
You should be able to add the request context processor in your settings.py file:
TEMPLATE_CONTEXT_PROCESSORS = ("django.core.context_processors.auth",
"django.core.context_processors …
