I will be brief: to work in the spirit and idea of a Django app, it is ok for an app to import models from inside another app ? Say, a User statistics app will import models
Don't do this. They will have the same app name and the ORM will be confused. Use an abstract model instead, and have both derive from it.