How to Solve NameError: name 'receiver' is not defined -- django
Solution: Import the 'receiver' module
To Solve the error, add the following line to the top of your code.
from django.dispatch import receiver
For more information:
Python django receiver