honzakral / django-threadedcomments

django-threadedcomments is a simple yet flexible threaded commenting system for Django.
BSD 3-Clause "New" or "Revised" License
622 stars 165 forks source link

Django_comments #64

Closed Sonicmr closed 8 years ago

Sonicmr commented 9 years ago

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 9 years ago

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.

manihere commented 7 years ago

thanks @vdboor pip install django-threadedcomments==1.0b1 and adding django_comments in INSTALLED_APPS did it! :)