I have
- installed
django_comments
- put it in INSTALLED_APPS field in
settings.py
- have defined
SITE_ID = 1
- enabled the sites framework
- put
url(r'^comments/', include('django_comments.urls'))
inurls.py
- have written
{% load comments %}
inhome.html
But I still can't see any comments loading in my home page. What am I missing?