I'm using Django 1.6 auth module to login users and I have a project consisting of two apps and I want to use the same user by calling request.user.username in the view in my second app. That is, in my template login.html in the first app this works {% if user.is_authenticated %} but {% if user.is_authenticated %} does not work in the second apps templates and I'm wondering how I can fetch it in functions in the second app? I've tried to fetch it with user=request.user.username but it doesn't work. I'm using Django 1.6 auth module to login users