I developed the django site on my local machine, and now is the time to upload it to the server. I would like for me to work on this during this time, only registered users can see it. I'm thinking of
{% if is_logged_in %} {% else %} {% endif %}
in my base.py template, but not all of my views return context, so it does not always work.
Is there an easy way without having to change most of the code to hide all pages?
source share