Django_comments
Sonicmr opened this issue · 2 comments
Sonicmr commented
Does this work with Django_Comments (not django.contrib.comments) and if yes how?
I am getting the following error
from django.contrib.comments.models import Comment
ImportError: No module named comments.models
I am using Django 1.8 so I have to use django_comments
vdboor commented
The latest beta version does support this. You can use:
pip install django-threadedcomments==1.0b1
It checks whether you have django.contrib.comments
or django_comments
in your INSTALLED_APPS
, and uses those models.