{% macro render_node(node) %}
{% if node.children %}{% else %}{% endif %} {{ node.label }} {% if node.id %}#{{ node.id }}{% endif %}
{% if node.detail %} {% endif %} {% if node.children %}
{% for child in node.children %} {{ render_node(child) }} {% endfor %}
{% endif %}
{% endmacro %}
{% if roots %}
{% for root in roots %} {{ render_node(root) }} {% endfor %}

Click a node to see its detail; click the row's caret to collapse/expand.

{% else %}

Couldn't parse the plan structure — showing raw text below.

{% endif %}
{{ raw }}