mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-11-14 02:34:27 +00:00
17 lines
407 B
HTML
17 lines
407 B
HTML
{%- import "utils.html" as utils with context -%}
|
|
{% extends "layout.html" %}
|
|
{% block content %}
|
|
{% include "header.html" %}
|
|
|
|
{% macro display_replies_tree(replies_tree_node) %}
|
|
|
|
{{ utils.display_object(replies_tree_node.ap_object) }}
|
|
{% for child in replies_tree_node.children %}
|
|
{{ display_replies_tree(child) }}
|
|
{% endfor %}
|
|
|
|
{% endmacro %}
|
|
|
|
{{ display_replies_tree(replies_tree) }}
|
|
|
|
{% endblock %}
|