moviewyrm/bookwyrm/templates/feed/thread.html

26 lines
771 B
HTML
Raw Normal View History

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">
{% 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-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>
{% 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-02 01:05:48 +00:00
</div>
</div>