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
the simplest implementation is using if loop :
{% if 'data' in request.session %}