{% extends 'babybuddy/page.html' %} {% load datetime duration i18n widget_tweaks %} {% block title %}{% trans "Feedings" %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans "Feedings" %} {% if perms.core.add_feeding %} {% trans "Add Feeding" %} {% endif %}

{% include 'babybuddy/filter.html' %}
{% if not unique_child %} {% endif %} {% comment %}Abbreviation of "Amount"{% endcomment %} {% for feeding in object_list %} {% cycle "odd" "even" as row_class silent %} {% if not unique_child %} {% endif %} {% if feeding.notes %} {% endif %} {% empty %} {% endfor %}
{% trans "Actions" %} {% trans "Date" %}{% trans "Child" %}{% trans "Method" %} {% trans "Type" %}{% trans "Amt." %} {% trans "Duration" %}
{% if perms.core.change_feeding %} {% endif %} {% if perms.core.delete_feeding %} {% endif %}
{{ feeding.start|datetime_short }}{{ feeding.child }}{{ feeding.get_method_display }} {{ feeding.get_type_display }} {% if feeding.amount %} {{ feeding.amount }} {% endif %} {{ feeding.duration|duration_string }}
{{ feeding.notes }}
{% trans "No feedings found." %}
{% include 'babybuddy/paginator.html' %} {% endblock %}