Zinnia-threaded-comments is a python package providing threaded comments for django-blog-zinnia based on django.contrib.comments.
Once Zinnia is installed on your Django project and this package installed
on your PYTHON_PATH, simply register the zinnia_threaded_comments
application in the INSTALLED_APP
section of your project's settings and
then register zinnia_threaded_comments
as the COMMENTS_APP
.
Now Zinnia can handle threaded comments.
Warning
- zinnia_threaded_comments must be registered before the zinnia app to bypass the loading of the Zinnia's templates.
- You need to use the
django.template.loaders.eggs.Loader
template loader if you have installed the package as an egg.
More informations about customizations of the comments framework at: https://docs.djangoproject.com/en/dev/ref/contrib/comments/custom/