Adding threaded commentsΒΆ

This package has build-in support for django-threadedcomments in this module. It can be enabled using the following settings:

INSTALLED_APPS += (
    'threadedcomments',
)

COMMENTS_APP = 'fluent_comments'

And make sure the intermediate ThreadedComment model is available and filled with data:

./manage.py migrate
./manage.py migrate_comments

The templates and admin interface adapt themselves automatically to show the threaded comments.