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

{{ report.title or "Tracking plan for " + report.client_name }}

For {{ report.client_name }} ({{ report.primary_url }})

{{ n_approved }} approved {{ n_rejected }} rejected {{ n_pending }} pending
{% if report.summary_md %}

Executive summary

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

Recommendations

Review each item below. Approve the ones you'd like us to implement; reject (with a comment if you have one) the ones you don't want. {% if report.status == 'approved' %}This report is fully reviewed.{% endif %}

    {% for a in actions %} {{ action_card(a, mode='review') }} {% endfor %}
{% if report.status == 'approved' %}

Thank you — review complete

We'll begin implementation and update you when each action is in place. You can return here any time to see status.

{% endif %} {% endblock %}