import model class from another app

Your “current directory” for a django project is not the directory in which your models.py resides. You should be able to just do from member.models import User

2 Likes