2021-05-11 22:14:42 +00:00
|
|
|
{% load status_display %}
|
2020-09-29 22:05:50 +00:00
|
|
|
|
2021-10-02 01:05:48 +00:00
|
|
|
<div class="thread-parent is-relative block">
|
|
|
|
<div class="thread">
|
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 %}
|
2021-01-30 19:46:15 +00:00
|
|
|
{% include 'feed/thread.html' with status=status|parent is_root=False %}
|
2020-03-10 00:03:59 +00:00
|
|
|
{% endwith %}
|
|
|
|
{% endif %}
|
|
|
|
|
2021-10-02 01:05:48 +00:00
|
|
|
<div{% if is_root %} class="block mt-5 is-main"{% endif %}>
|
2021-10-01 21:12:34 +00:00
|
|
|
{% include 'snippets/status/status.html' with status=status main=is_root %}
|
|
|
|
</div>
|
2020-03-10 00:03:59 +00:00
|
|
|
|
|
|
|
{% if depth <= max_depth and direction >= 0 %}
|
|
|
|
{% for reply in status|replies %}
|
|
|
|
{% with direction=1 %}
|
2021-01-30 19:46:15 +00:00
|
|
|
{% include 'feed/thread.html' with status=reply is_root=False %}
|
2020-03-10 00:03:59 +00:00
|
|
|
{% endwith %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
2021-10-02 01:05:48 +00:00
|
|
|
</div>
|
|
|
|
</div>
|