bookwyrm-mastodon/bookwyrm/templates/feed/thread.html

26 lines
771 B
HTML
Raw Normal View History

2021-05-11 18:14:42 -04:00
{% load status_display %}
2020-09-29 18:05:50 -04:00
2021-10-01 21:05:48 -04:00
<div class="thread-parent is-relative block">
<div class="thread">
{% with depth=depth|add:1 %}
{% if depth <= max_depth and status.reply_parent and direction <= 0 %}
{% with direction=-1 %}
{% include 'feed/thread.html' with status=status|parent is_root=False %}
{% endwith %}
{% endif %}
2021-10-01 21:05:48 -04:00
<div{% if is_root %} class="block mt-5 is-main"{% endif %}>
2021-10-01 17:12:34 -04:00
{% include 'snippets/status/status.html' with status=status main=is_root %}
</div>
{% if depth <= max_depth and direction >= 0 %}
{% for reply in status|replies %}
{% with direction=1 %}
{% include 'feed/thread.html' with status=reply is_root=False %}
{% endwith %}
{% endfor %}
{% endif %}
{% endwith %}
2021-10-01 21:05:48 -04:00
</div>
</div>