{{ f.data.message }}
{% if f.data.code %}
{{ f.data.code }}
{% endif %}
{% if f.report and f.report.status == "analyzing" %}
{% with finding_id=f.id %}
{% include "_llm_spinner.html" %}
{% endwith %}
{% elif f.report and f.report.verdict %}
{% with report=f.report, finding_id=f.id %}
{% include "_llm_report_fragment.html" %}
{% endwith %}
{% elif config.llm_enabled and not config.llm_auto_analyze %}
{% endif %}