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.
Source:stackexchange.com