Hi.
I have two django-apps. news and comments in news/models.py I import my comments with "from my_proj.comments.models import Comment" and in my comments/models.py I import my news class with "from my_proj.news.models import News"
Then in my third app (named frontpage) I import News in the view.py. But I get the error: Could not import hb_frontpage.views. Error was: cannot import name News
If I delete the import in the comments/models.py file (and the functions that uses News) it works. Anyone know how to solve this?