Threaded-view on status pages
It's hideous though, sorry
This commit is contained in:
parent
a0f1880f37
commit
2215e0a894
11 changed files with 91 additions and 47 deletions
18
fedireads/templates/snippets/thread.html
Normal file
18
fedireads/templates/snippets/thread.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
{% load fr_display %}
|
||||
{% 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 %}
|
Loading…
Add table
Add a link
Reference in a new issue