2020-03-10 00:03:59 +00:00
|
|
|
{% load fr_display %}
|
2020-09-29 22:05:50 +00:00
|
|
|
<div class="block">
|
|
|
|
|
2020-03-10 00:03:59 +00:00
|
|
|
{% with depth=depth|add:1 %}
|
|
|
|
{% if depth <= max_depth and status.reply_parent and direction <= 0 %}
|
|
|
|
{% with direction=-1 %}
|
|
|
|
{% include 'snippets/thread.html' with status=status|parent is_root=False %}
|
|
|
|
{% endwith %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% include 'snippets/status.html' with status=status main=is_root %}
|
|
|
|
|
|
|
|
{% if depth <= max_depth and direction >= 0 %}
|
|
|
|
{% for reply in status|replies %}
|
|
|
|
{% with direction=1 %}
|
|
|
|
{% include 'snippets/thread.html' with status=reply is_root=False %}
|
|
|
|
{% endwith %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
2020-09-29 22:05:50 +00:00
|
|
|
|
|
|
|
</div>
|