{% extends "base.html" %} {% block title %}Report: {{ report.database_name }}{% if report.table_name %} / {{ report.table_name }}{% endif %}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ report.agent_status or 'pending' }} Exploration report: {{ report.database_name }}{% if report.table_name %} / {{ report.table_name }}{% endif %}

{% if report.extra_prompt %}

Guidance: {{ report.extra_prompt }}

{% endif %} {% if report.agent_conversation_id %}

View agent conversation

{% endif %} {% if report.agent_error %}
Error:
{{ report.agent_error }}
{% endif %} {% if report.agent_final_message %}

Summary: {{ report.agent_final_message }}

{% endif %}
{% endblock %}