2020-12-12 21:25:04 -05:00
|
|
|
{% load bookwyrm_tags %}
|
2020-09-29 18:05:50 -04:00
|
|
|
<div class="block">
|
|
|
|
|
2020-03-09 20:03:59 -04:00
|
|
|
{% with depth=depth|add:1 %}
|
|
|
|
{% if depth <= max_depth and status.reply_parent and direction <= 0 %}
|
|
|
|
{% with direction=-1 %}
|
2021-01-30 14:46:15 -05:00
|
|
|
{% include 'feed/thread.html' with status=status|parent is_root=False %}
|
2020-03-09 20:03:59 -04:00
|
|
|
{% endwith %}
|
|
|
|
{% endif %}
|
|
|
|
|
2021-02-23 16:34:16 -05:00
|
|
|
{% include 'snippets/status/status.html' with status=status main=is_root %}
|
2020-03-09 20:03:59 -04:00
|
|
|
|
|
|
|
{% if depth <= max_depth and direction >= 0 %}
|
|
|
|
{% for reply in status|replies %}
|
|
|
|
{% with direction=1 %}
|
2021-01-30 14:46:15 -05:00
|
|
|
{% include 'feed/thread.html' with status=reply is_root=False %}
|
2020-03-09 20:03:59 -04:00
|
|
|
{% endwith %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
2020-09-29 18:05:50 -04:00
|
|
|
|
|
|
|
</div>
|