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

Erorr: name 'HttpResponseRedirect' is not defined

NameError: name 'HttpResponseRedirect' is not defined

Solution: Import the 'HttpResponseRedirect' module

# Add the following line to the top of your code
from django.http import HttpResponseRedirect

 

For more information:
django HttpResponseRedirect