私は次のビュー機能を持っています
def test():
print 'test'
モデルクラスでこの関数を使用してインポートを使用しようとすると:
from group.views import test
次のエラーが表示されます。
File "/groups/models.py", line 14, in <module>
from groups.views import test
File "/groups/views.py", line 10, in <module>
from groups.models import Group
ImportError: cannot import name Group