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

Explore {{ database_name }}{% if table_name %} / {{ table_name }}{% endif %}

{% if reports %}

Reports

{% for report in reports %}

{{ report.agent_status or 'pending' }} Report from {{ report.created_at | agent_format_datetime }} {% if report.table_name and not table_name %}table: {{ report.table_name }}{% endif %} {% if report.extra_prompt %} — {{ report.extra_prompt }}{% endif %}

{% if report.agent_error %}

Error: {{ report.agent_error }}

{% elif report.agent_final_message %}

{{ report.agent_final_message }}

{% endif %}
{% endfor %} {% endif %} {% endblock %}