Am using django-registration but I have a problem. I want to get the login status of a user and pass it to all the html pages in my project. I normally just declare it in my views.py like this
logged_in =request.user.is_authenticated() # get login status
and then pass it as a context to corresponding htmls. now am using django-registration and I need to pass logged_in
to all the htmls rendered by django-registation but am not sure how to do this. I am trying to not modify the django-registration code. I have a feeling i need context_processors but am lost as to what I really need to do here. help please !!