{% extends "base.html" %} {% block title %}Fertig! – Auf Deutsch{% endblock %} {% block content %} {% set total_done = phrases_reviewed + phrases_learned %} {% set msgs = [ ("Ausgezeichnet!", "Excellent. You finished a focused session and kept the habit alive."), ("Sehr gut!", "Great work. The strongest learners are the ones who return tomorrow."), ("Toll gemacht!", "Nice session. Practical language grows from small, repeated wins."), ("Wunderbar!", "Another step done. Real usefulness comes from steady repetition."), ("Prima!", "Solid work. Short sessions are exactly how consistency becomes easy.") ] %} {% set msg = msgs[duration % 5] %}
🎉

Gut gemacht!

{{ msg[0] }} {{ msg[1] }}

{{ phrases_reviewed }} reviewed
{{ phrases_learned }} learned
{% set mins = duration // 60 %} {% set secs = duration % 60 %} {{ mins }}:{{ "%02d" | format(secs) }} time
{% if session_outcomes %}
What this helps you do
{% for item in session_outcomes %}
{{ item.cover_emoji }} {{ item.pct }}%
{{ item.pack_name }}
{{ item.can_do }}
{% endfor %}
{% endif %} {% if activity_log %}
This session
{% for entry in activity_log %}
{{ entry.icon }} {{ entry.de }} {{ entry.en }}
{% endfor %}
{% endif %} {% if grammar_tip and grammar_tip.grammar_note %}
Grammar note
{{ grammar_tip.de }}
{{ grammar_tip.grammar_note }}
{% endif %}
Next move
{% if recommended_pack %}
{{ recommended_pack.cover_emoji }} {{ recommended_pack.pack_name }}
{{ recommended_pack.can_do }}
Open next lesson
{% else %}
Keep it light tomorrow
A short review tomorrow at {{ reminder_time }} is enough to keep the chain going.
Back home
{% endif %}
{% if practical_wins %}
{{ streak }}-day streak. You are building usable German, not just finishing cards.
{% endif %}
Bis morgen →
{% endblock %} {% block scripts %} {% endblock %}