{% extends "base.html" %} {% block title %}Stats — Courant{% endblock %} {% block content %}

Today's stats

{% if reminders %}
{% for r in reminders %} {% set progress = progresses[r.id] %}
{% if r.icon %}{{ r.icon }}{% endif %} {{ r.name }}
{{ progress.count }}{% if progress.goal %} / {{ progress.goal }}{% endif %}
{% if progress.percent is not none %}
{{ "%.0f"|format(progress.percent) }}%
{% else %}
not tracked
{% endif %}
{% endfor %}

Weekly/monthly aggregates coming later.

{% else %}

No reminders configured.

{% endif %}
{% endblock %}