{% extends "base.html" %} {% block title %}Weekly Retrospective{% endblock %} {% block content %}
📋 Weekly Retrospective
Auto-generated every Friday evening from kanban, git, and interactions.
📊 Export as Deck
{% if retro %}
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 %}
← Back to briefing
{% else %}
No retrospective yet — click "Generate Now" or wait for Friday evening.
{% endif %}
{% endblock %}