I have a website on which I include userBox with some data displayed for each registered user (your name, avatar, etc.). From what I already know about django, it seems obvious that I have to add the request for the user to the context processor (so that I can use the variable {{user}}in this included userBox). But when using the django-lfs store, I noticed that a variable is used in its templates {{ user }}, which is not added anywhere in context processors and template tags. Is there any other way to get the user in my template than those 2?
source
share