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

Solution: Import the 'never_cache' module

To Solve the error, add the following line to the top of your code.

from django.views.decorators.cache import never_cache

 

For more information:
Python django never_cache