Re: Comments inside a loop

2010-05-12 Thread Yanik
Wow, I feel totally stupid... works like a charm now :) On May 12, 2:14 pm, Karen Tracey wrote: > On Wed, May 12, 2010 at 1:52 PM, Yanik wrote: > > Hello, > > > I'm trying to do something that seemed simple, but can't get to work: > > displaying comments using Django (1.2 RC)'s Comment framework

Re: Comments inside a loop

2010-05-12 Thread Karen Tracey
On Wed, May 12, 2010 at 1:52 PM, Yanik wrote: > Hello, > > I'm trying to do something that seemed simple, but can't get to work: > displaying comments using Django (1.2 RC)'s Comment framework inside a > loop. > > > {% for entry in entries %} >{% get_comment_list for entry as comments %}

Comments inside a loop

2010-05-12 Thread Yanik
Hello, I'm trying to do something that seemed simple, but can't get to work: displaying comments using Django (1.2 RC)'s Comment framework inside a loop. {% for entry in entries %} {% get_comment_list for entry as comments %} {% render_comment_form for entry %} {% endfor %} but