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

Solution: Import the 'parse_date' module

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

from django import parse_date

 

For more information:
Python django parse_date