How to Solve NameError: name 'Entry' is not defined -- myapp

Solution: Import the 'Entry' module

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

from myapp.models import Entry

 

For more information:
Python myapp Entry