[Answered ]-Django user appears as if not logged in

2👍

render_to_response was deprecated, and I assume your issues are with using RequestContext, instead you can just use render

from django.shortcuts import render
return render(request, 'journal_submit.html', c)
👤Sayse

Leave a comment