Week ending {{ retro.week_ending }}
{{ retro.summary }}
{% if retro.done_tasks %}
✅ Completed Tasks ({{ retro.done_tasks|length }})
{% for t in retro.done_tasks[:8] %}
- {{ t.title }} ({{ t.date }})
{% endfor %}
{% endif %}
{% if retro.commits %}
💻 Commits ({{ retro.commits|length }})
{% for c in retro.commits[:8] %}
- {{ c }}
{% endfor %}
{% endif %}
{% if retro.interactions %}
🤝 Customer / Stakeholder Touchpoints
{% for i in retro.interactions[:6] %}
- {{ i.title }} — {{ i.contact }} ({{ i.date }})
{% endfor %}
{% endif %}
{% if retro.objective_progress %}
🎯 Objective Progress
{% for o in retro.objective_progress %}
{{ o.title }}
{{ o.pct }}%
{% endfor %}
{% endif %}