Re: Comments in reversed order

2008-10-25 Thread Dmitry Dzhus
jrivero wrote: > yes! but the previous solution was useful to paginate the result with > a another templatetag > > {% get_comment_list for entry as comment_list reversed %} > {% paginate comment_list 10 as page using comment_list_page %} > {% for comment in comment_list_page %} >

Re: Comments in reversed order

2008-10-24 Thread jrivero
yes! but the previous solution was useful to paginate the result with a another templatetag {% get_comment_list for entry as comment_list reversed %} {% paginate comment_list 10 as page using comment_list_page %} {% for comment in comment_list_page %} comment.comment {% endfor %} what method

Re: Comments in reversed order

2008-10-22 Thread Dmitry Dzhus
jrivero wrote: > Is possible obtain the comments of django.contrib in reversed order? > > In old version: > {% get_free_comment_list for workgroups.workgroup group.id as > comment_list reversed %} > > But in new version the templatetag not have control of this parameter. > The method for order is

Comments in reversed order

2008-10-21 Thread jrivero
Is possible obtain the comments of django.contrib in reversed order? In old version: {% get_free_comment_list for workgroups.workgroup group.id as comment_list reversed %} But in new version the templatetag not have control of this parameter. The method for order is other? Regards