If I set a session variable in Django, like:
request.session[\"name\"] = \"name\"
Is there a way I can access it from within a template, o
You can pass a request variable to a template and there use:
request
{{ request.session.name }}