{% extends 'cards/base.html' %} {% load i18n %} {% block header %}{% trans "Diaper Changes" %}{% endblock %} {% block title %} {% trans "Past Week" %} {% endblock %} {% block content %} {% for key, info in stats.items %} {% if info.wet > 0 or info.solid > 0 %}
{% if info.wet_pct > 0 %}
{{ info.wet|floatformat:'0' }} {% trans "wet" %}
{% endif %} {% if info.solid_pct > 0 %}
{{ info.solid|floatformat:'0' }} {% trans "solid" %}
{% endif %}
{% if key == 0 %} {% trans "today" %} {% elif key == 1 %} {% trans "yesterday" %} {% else %} {% blocktrans %}{{ key }} days ago{% endblocktrans %} {% endif %}
{% endif %} {% endfor %} {% endblock %}