How to Solve NameError: name 'DjangoTemplates' is not defined -- django

Solution: Import the 'DjangoTemplates' module

# Add the following line to the top of your code
from django.template.backends.django import DjangoTemplates

 

For more information:
django DjangoTemplates