I was hoping to seek some assistance on this problem I\'m having. I\'m still learning Django (and Python) and come across this particular issue that I\'m unable to locate a
Switch
from News.models import News_Article
to
from Bolton_GC.News.models import News_Article
Just to elaborate on @TheLifeOfSteve's answer, all the import statements are always relative to your manage.py file.
If the manage.py file was at the path Bolton_GC/Bolton_GC, then the correct import statement would just be:
from News.models import News_Article
But in the current directory structure, the following is the correct answer as pointed out by Steve.
from Bolton_GC.News.models import News_Article