I work on a Django project
when user is authenticated, I can get information of this user (queries on database) stored in five differents tables: user -- profile -- table1 -- table2 -- table3
I would like to have access to these data in each template
I currently use context to pass data from views to template I also set session variables that I can use in views to set context
but doing like that, I must pass these data in each views as session variables can be directly access in template
but, is there a simpliest way of getting user data available in all template without having to pass context in each template?
hope my question is clear enough...