{% extends "base.html" %} {% from "_macros.html" import status_badge, action_card %} {% block title %}Report — {{ report.title or report.client_name }}{% endblock %} {% block content %}

← {{ report.client_name }}

{{ report.title or "(untitled report)" }} {{ status_badge(report.status) }}

Download PDF {% if report.status == 'draft' %} {% if reviewers %}
{% else %} Add reviewers first {% endif %} {% endif %}
Edit title + summary
{% if report.summary_md %}

Executive summary

{{ report.summary_md }}
{% endif %}

Proposed actions ({{ actions|length }})

{% if not actions %}

No actions on this report. The analyzer may have failed — check the crawl page.

{% endif %}
    {% for a in actions %} {{ action_card(a, mode='internal') }} {% endfor %}
{% endblock %}