[Django]-ImportError: No module named context_processors

10👍

The csrf module is moved from django.core.context_processors to django.views.decorators in the latest release. You can refer it here

5👍

context_processors in Django 1.10 and above has been moved from core to template.

Replace

django.core.context_processors

with

django.template.context_processors

Leave a comment