In Views.py Add:
class SessionVarView(TemplateView):
permission_classes = [permissions.IsAuthenticated]
@csrf_exempt
def get(self, request, *args, **kwargs):
print(request)
return HttpResponse(request.session[kwargs['key']])
In Urls.py Add:
re_path(r'^session/(?P<key>[^/]+)$', views.SessionVarView.as_view(), name='session-var'),
Then you could get it from JS via http://127.0.0.1/session/key_name_here or something similar.
Reference :
a) : https://stackoverflow.com/questions/35169519/django-session-variable-in-javascript
b) : https://www.edureka.co/community/79598/how-to-update-django-session-variable-in-javascript
c) : URL dispatcher - https://docs.djangoproject.com/en/3.1/topics/http/urls/
Social Plugin