{% extends 'cards/base.html' %}
{% load duration i18n %}

{% block header %}
    <a href="{% url "core:feeding-list" %}">
        {% trans "Today's Feeding" %}
    </a>
{% endblock %}

{% block title %}
    {% if total %}
        {{ total }}
    {% else %}
        {% trans "None" %}
    {% endif %}
{% endblock %}

{% block content %}
    {% if count > 0 %}
        {% blocktrans %}{{ count }} feeding entries{% endblocktrans %}
    {% endif %}
{% endblock %}