{# The "time since / days / streak" tiles. Shared by the dashboard and the calendar, so the two can never drift into two different answers for the same question. 🔴 EVERY CELL HERE HONOURS THE None CONTRACT. `since` is absent when the thing has never happened (not "0s", which would read as "just now"); `streak` is absent for an activity whose cadence is `none` (a counter has no run to break, and a 0 would state that one WAS broken); `time` is absent when the activity declares no duration source. #} {% if acts %}

Where things stand calendar →

{% for m in acts %} {% set a = m.activity %}
{{ a.icon }} {{ a.title }} {% if a.emits %}
{% endif %}
{% if m.since is not none %}
{{ m.since|dur }} ago
{% else %}
never
{% endif %}
{{ m.days }}d done {% if m.streak %}🔥 {{ m.streak.current }}{{ m.streak.unit }}{% endif %} {% if m.total_seconds is not none %}⏱ {{ m.total_seconds|dur }}{% endif %} {% if m.week %}{{ m.week.n }}/{{ m.week.target }} wk{% endif %}
{% endfor %}
{% endif %}