Or at least so it seems.. Because the template goes into an eternal loop with this code:
Main file:
<%= render 'category_partial', 200, :categories => categories %>
Partals file category_partial.tpl:
<ul class="category">
{loop categories}
<li><a href="#">{category.name}</a></li>
<ul class="category">
{?category.categories}
<%= render 'category_partial', 200, :categories => category.categories %>
{end}
</ul>
{end}
Though the code generating the recursive comments is functioning fine.
1 to 2 of 2