{% if tree_nodes %}

{{ current_dataset or 'Entities' }}

{{ current_profile }} {{ version }} - {{ tree_nodes|length }} root entities
{# Everything here acts on the open dataset, so it lives with the dataset rather than in the global header, where it used to sit on pages that have no dataset to act on. #} {# The list and the graph are switched on and off independently; whatever is on shares the full width. #} {# Adapter exports the active profile offers, straight from the plugin registry: a new exporter appears here by declaring itself, with no template change. #} {% for opt in export_options %} {{ opt.label }} {% endfor %} Export Excel ← Datasets
{% include "partials/import_source.html" %}
{% for node in tree_nodes recursive %}
{% if loop.depth == 1 %} {% endif %}
{% if node.children %}
{{ loop(node.children) }}
{% endif %} {% endfor %}
{% else %}

{{ current_dataset or 'Empty Dataset' }}

{{ current_profile }} {{ version }}

This dataset has no entities yet. Create your first entity to get started, or fill it from a public record.

{% include "partials/import_source.html" %}
{% for root_type in root_types %} {% endfor %} Back to Datasets
{% endif %}