Execution Result
{% if result_data is string %}

{{ result_data }}

{% elif result_data %}
{{ result_data | tojson(indent=2) }}
{% else %}

No results to display yet.

{% endif %}
{% if result_data is string %}

{{ result_data }}

{% elif result_data is mapping %} {# Call our new macro/include for structured display #} {% include 'partials/_structured_data_view.html' with context %} {% elif result_data %}

Structured view not available for this result type (not a dictionary).

{{ result_data | tojson(indent=2) }}
{% else %}

No results to display yet.

{% endif %}