{% extends 'cards/base.html' %} {% load i18n %} {% block header %} {% trans "Diaper Changes" %} {% endblock %} {% block title %} {% if total == 0 %} {% trans "None" %} {% else %} {% trans "Past Week" %} {% endif %} {% endblock %} {% block content %} {% for key, info in stats.items %} {% if info.wet > 0 or info.solid > 0 or info.empty > 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 info.empty_pct > 0 %}
{{ info.empty|floatformat:'0' }}
{% endif %}
{% if key == 0 %} {% trans "today" %} {% elif key == 1 %} {% trans "yesterday" %} {% else %} {% blocktrans with days_ago=key %}{{ days_ago }} days ago{% endblocktrans %} {% endif %}
{% endif %} {% endfor %} {% endblock %}