I want to create a "Sign up for our newsletter" pop up that has a "No thanks" button.
I want Django to remember that the user clicked the "No thanks" button.
What I know is that sessions/cookies are set in their respective views. I see examples on StackOverflow of them set in the home/index view. What if the user visits a different page? Then the session variable won't be set unless they visit that one page.
I'd like for the same variable set regardless of what page they view.