Parent: [9151c9] (diff)

Child: [ddf08c] (diff)

Download this file

post_thread.html    17 lines (16 with data), 520 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
<!-- post_thread -->
<li>
{{widget.parent_widget.widgets.post.display(
value=value, show_subject=show_subject, indent=indent,
supress_promote=supress_promote, page=page, limit=limit)}}
<!-- post_thread replies -->
<ul>
{%- if children %}
{%- for child in children if child.post.status == 'ok' %}
{{widget.display(value=child.post, children=child.children, indent=indent+1)}}
{%- endfor %}
{%- endif %}
</ul>
<!-- post_thread /replies -->
</li>
<!-- /post_thread -->