Writing Nested Comments in Django / Python

Django provides an excellent comments application. However, I do not want to use other fields such as user_email , user_url , etc. I want to develop a system of nested comments (for example, Quora , unlike Facebook ). But I can't figure out how to promote the template mentioned in the Django docs as it uses all the fields under the comments . Are there any helpful articles / guides that might be helpful?

+6
source share
1 answer

One of my work assistants wrote a multi-threaded comment system a year ago, you can find some interesting pointers just by looking at the source code (or you can just use this or develop it).

here is the link https://github.com/pterk/django-tcc

0
source

All Articles