Hi guys, I'm using Django.contrib.comments in my Django web app. After
installing django comments and setting up all other things, I decided
to give it a try by commenting on my status.
I commented and I was redirected to /comment/posted/. But the problem
I'm facing is that, Django comments is not displaying my comments. I
can't find it anywhere but it will save it in the DB. What I'm I
missing?
{% load comments %}
{% get_comment_count for sol as comment_count %}
{% get_comment_list for sol as comment_list %}
{% get_comment_form for sol as form %}
{% if user.is_authenticated %}
<form action="{% comment_form_target %}" method="post">
{% csrf_token %}
{% if next %}<input name="next" type="hidden"
value="{{ next }}" />{% endif %}
{% for field in form %}
{% if field.is_hidden %}
{{ field }}
{% else %}
{% if
field.name != "name" and
field.name != "email"
and
field.name != "url" %}
{% if field.errors %}{{ field.errors }}{% endif %}
{{ field }}
{% endif %}
{% endif %}
{% endfor %}
<input class="submit-post" name="post" type="submit"
value="Post" />
</form>
{% else %}
I'm sorry, but you must be <a href="javascript:alert('send to
login page')">logged in</a> to submit comments.
{% endif %}