I am looking over this website but just can\'t seem to figure out how to do this as it\'s not working. I need to check if the current site user is logged in (authenticated),
If you want to check for authenticated users in your template then:
{% if user.is_authenticated %} Authenticated user {% else %} {% endif %}
Authenticated user