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

Erorr: name 'gettext_lazy' is not defined

NameError: name 'gettext_lazy' is not defined

Solution: Import the 'gettext_lazy' module

# Add the following line to the top of your code
from django.utils.translation import gettext_lazy

 

For more information:
django gettext_lazy