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

{% trans "Tummy Time" %} {% if perms.core.add_tummytime %} {% trans "Add Tummy Time" %} {% endif %}

{% include 'babybuddy/filter.html' %}
{% for tummytime in object_list %} {% empty %} {% endfor %}
{% trans "Start" %} {% trans "End" %} {% trans "Child" %} {% trans "Duration" %} {% trans "Milestone" %} {% trans "Actions" %}
{{ tummytime.start|datetime_short }} {{ tummytime.end|datetime_short }} {{ tummytime.child }} {{ tummytime.duration|duration_string }} {{ tummytime.milestone }}
{% if perms.core.change_tummytime %} {% endif %} {% if perms.core.delete_tummytime %} {% endif %}
{% trans "No tummy time entries found." %}
{% include 'babybuddy/paginator.html' %} {% endblock %}