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)
Source:stackexchange.com