Context
{{ context }}
Key Findings
{% for finding in findings %}
{{ finding.severity | default('info') | upper }}
{{ finding.title }}
{{ finding.detail }}
{% endfor %}
Recommendations
{% for rec in recommendations %}
- {{ rec }}
{% endfor %}
Next Actions
| Action |
Owner |
Due |
{% for action in next_actions %}
| {{ action.action }} |
{{ action.owner }} |
{{ action.due }} |
{% endfor %}
{% if appendix_notes %}
Notes
{{ appendix_notes }}
{% endif %}