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

{% trans "Feedings" %}

{% include 'babybuddy/filter.html' %}
{% comment %}Abbreviation of "Amount"{% endcomment %} {% for feeding in object_list %} {% empty %} {% endfor %}
{% trans "Child" %} {% trans "Method" %} {% trans "Type" %}{% trans "Amt." %} {% trans "Duration" %} {% trans "Date" %} {% trans "Actions" %}
{{ feeding.child }} {{ feeding.get_method_display }} {{ feeding.get_type_display }} {% if feeding.amount %} {{ feeding.amount }} {% endif %} {{ feeding.duration|duration_string }} {{ feeding.start|date:'n/j/y G:i' }}
{% if perms.core.change_feeding %} {% endif %} {% if perms.core.delete_feeding %} {% endif %}
{% trans "No feedings found." %}
{% include 'babybuddy/paginator.html' %} {% if perms.core.add_feeding %} {% trans "Add a Feeding" %} {% endif %} {% endblock %}