我有
django_comments
settings.py
SITE_ID = 1
url(r'^comments/', include('django_comments.urls'))
放入urls.py
{% load comments %}
home.html
醇>
但我仍然无法在主页上看到任何评论。 我错过了什么?
答案 0 :(得分:1)
{% load comments %}
实际上并没有显示评论......它只是加载它们。您需要使用{% render_comment_list for [object] %}
来实际显示它们(将[object]
替换为您的型号名称。)
请阅读有关显示评论in the docs的部分的详细信息。