{# Final research display — shown for done and error states. #} {% if research.status == 'error' %}
Research failed: {{ research.error_msg or 'Unknown error' }}
{% elif research.status == 'done' %}
Company Research — {{ company.name }}
{{ research.research_json }}
{% if research.cost_usd %}
Cost: ${{ "%.4f" | format(research.cost_usd) }}
{% endif %}
{% endif %}