I have a blog app and a video app in the same directory in my django project. I am trying to a add a model from my video app called video, to my blog/views.py so I can access it by using
Video.object.all()
I tried doing this
from video.models import Video
and
from Models.video import Video
and
import video
but none of these are working. How do I change my code to access that class