Search code examples
djangodjango-comments

How to comment a comment using Django’s comments framework


I'm using Django's comments framework to quite similar to the blog example.

Can anyone suggest a solution how to reply to a post comment?


Solution

  • It's not possible with the framework provided. (Well, of course it is, it's just Python, but only if you override so much you may as well write your own framework).

    Consider using Eric Florenzano's Threaded Comments application instead.