0
我想從這個github https://github.com/HonzaKral/django-threadedcomments安裝此模塊django-threadedcomments。但是當我運行遷移時,出現以下錯誤。注意:我使用的是Django 1.7,並且還安裝了django_comments。django字段E300錯誤threadcomments
CommandError: System check identified some issues:
ERRORS: threadedcomments.ThreadedComment.comment_ptr: (fields.E300) Field defines a relation with model 'Comment', which is either not installed, or is abstract
settings.py
INSTALLED_APPS = (
'threadedcomments',
'django_comments',
'django.contrib.sites',
)
COMMENTS_APP = 'threadedcomments'
任何決議沒有問題這個? –