{% if data.current_streak %}
Current streak: {{ data.current_streak.length }} consecutive {{ data.current_streak.mood_type }} check-ins since {{ data.current_streak.start_date }}.
{% endif %} {% if data.streaks %}
{% for streak in data.streaks %} {% endfor %}
# Mood Type Length Start End
{{ forloop.counter }} {{ streak.mood_type|title }} {{ streak.length }} {{ streak.start_date }} {{ streak.end_date }}
{% else %}

No streak data found.

{% endif %}