[Answer]-Displaying comments using django_comments

1👍

{% load comments %} doesn’t actually show comments…it just loads them. You need to use {% render_comment_list for [object] %} to actually show them (replacing [object] with your model name.)

Read more in the section on displaying comments in the docs.

Leave a comment