2👍
✅
Try removing "django.core.context_processors.request"
from your settings.
In Django 1.10 django.core.context_processors
has been moved to django.template.context_processors
. See the release notes
You already have the request context processors, no need to add it again with the wrong location.
0👍
I fixed it, in settings.py In my TEMPLATES, I changed this line from this
django.core.context_processors.request
to this
django.template.context_processors.request
and now I can see my site. I hope this helps someone.
- [Answered ]-Django Form errors not displaying in template
- [Answered ]-Run linux command from django view script
Source:stackexchange.com