Below the status. I'm not sure if I fixed this. How will I make it
display comment? Please.

On Feb 14, 12:32 pm, Daniel Roseman <dan...@roseman.org.uk> wrote:
> On Tuesday, 14 February 2012 12:02:58 UTC, coded kid wrote:
>
> > 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 %}
>
> OK, so where in the template above are you actually asking it to display
> comment_list?
> --
> DR.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to