Files
caminus/templates/forums/_post.html
2012-02-18 15:31:13 -05:00

12 lines
294 B
HTML

{% load mptt_tags %}
<div class="forum-post">
{% include "forums/_post_children.html" with post=post %}
{% recursetree post.children %}
<div class="forum-post">
{% include "forums/_post_children.html" with post=node %}
{{children}}
</div>
{%endrecursetree%}
</div>