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

Erorr: name 'HttpResponseNotFound' is not defined

NameError: name 'HttpResponseNotFound' is not defined

Solution: Import the 'HttpResponseNotFound' module

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

 

For more information:
django HttpResponseNotFound