hi, I developped a django website on my local machine and now is the time to upload it on a server. I would like that during the time i work on it, only logged in users can see it. I thought about a
{% if is_logged_in %}
{% else %}
{% endif %}
structure in my base.py template but not all my views return a Context so it doesn't always work.
Is there any simple way without having to change much of code to hide every pages?