{% extends 'cards/base.html' %} {% load duration i18n %} {% block header %} {% trans "Breastfeeding" %} {% endblock %} {% block title %} {% if total == 0 %} {% trans "None" %} {% else %} {% trans "Past Week" %} {% endif %} {% endblock %} {% block content %} {% for key, info in stats.items %} {% if info.left_count > 0 or info.right_count > 0 %}
{{ info.left_count }} {% trans "left" %}
{{ info.right_count }} {% trans "right" %}
{% if key == 0 %} {% trans "today" %} {% elif key == 1 %} {% trans "yesterday" %} {% else %} {% blocktrans with days_ago=key %}{{ days_ago }} days ago{% endblocktrans %} {% endif %} {% if info.count > 0 %} ({{ info.count }} {% trans "feedings in" %} {{ info.duration|duration_string:'m' }}) {% endif %}
{% endif %} {% endfor %} {% endblock %}