microblog.pub/app/templates/object.html

18 lines
407 B
HTML
Raw Normal View History

2022-06-22 20:11:22 +02:00
{%- import "utils.html" as utils with context -%}
{% extends "layout.html" %}
{% block content %}
{% include "header.html" %}
2022-06-24 23:09:37 +02:00
{% 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) }}
2022-06-22 20:11:22 +02:00
{% endblock %}