Total Days

{{ data.total_days }}

Fasting Days

{{ data.fasting_days_count }}

Fasting Rate

{{ data.fasting_rate_pct }}%

Current Streak

{% if data.current_streak.count > 0 %} {{ data.current_streak.count }} {{ data.current_streak.type }} {% else %} — {% endif %}

Periodic fasting: {{ data.periodic_threshold_hours }}h+ gaps ({{ data.periodic_fasting_count }} days) · Full fasting: {{ data.full_threshold_hours }}h+ gaps ({{ data.full_fasting_count }} days) · Liquid fasting: {{ data.liquid_fasting_count }} days

{% if data.current_streak.count > 0 %}
Current streak: {{ data.current_streak.count }} consecutive {{ data.current_streak.type }} fasting day{{ data.current_streak.count|pluralize }}.
{% endif %} {% if data.longest_streaks %}
Longest Streaks
{% for streak in data.longest_streaks %} {% endfor %}
# Type Length Start End
{{ forloop.counter }} {{ streak.type|title }} {{ streak.count }} day{{ streak.count|pluralize }} {{ streak.start }} {{ streak.end }}
{% endif %} {% if data.fasting_days %}
Fasting Days
{% for day in data.fasting_days %} {% endfor %}
Date Type
{{ day.date }} {% if day.type == 'full' and day.had_drink %} Liquid Fast {% elif day.type == 'full' %} Full Fast {% else %} Periodic Fast {% endif %}
{% else %}

No fasting days detected for this period.

{% endif %}