使用 django_comments 显示评论

Displaying comments using django_comments

我有

  1. 已安装django_comments
  2. 将其放在 settings.py
  3. 的 INSTALLED_APPS 字段中
  4. 已定义SITE_ID = 1
  5. 启用站点框架
  6. url(r'^comments/', include('django_comments.urls'))放入urls.py
  7. home.html
  8. 中写了{% load comments %}

但是我的主页上仍然看不到任何评论加载。 我错过了什么?

{% load comments %} 实际上不显示评论...它只是加载它们。您需要使用 {% render_comment_list for [object] %} 来实际显示它们(将 [object] 替换为您的型号名称。)

阅读有关显示评论的部分的更多信息 in the docs