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

{% trans "Diaper Changes" %} {% if perms.core.add_diaperchange %} {% trans "Add Diaper Change" %} {% endif %}

{% include 'babybuddy/filter.html' %}
{% if not unique_child %} {% endif %} {% for change in object_list %} {% cycle "odd" "even" as row_class silent %} {% if not unique_child %} {% endif %} {% if change.notes %} {% endif %} {% empty %} {% endfor %}
{% trans "Actions" %} {% trans "Time" %}{% trans "Child" %}{% trans "Contents" %} {% trans "Color" %} {% trans "Amount" %} {% trans "Tags" %}
{% if perms.core.change_diaperchange %} {% endif %} {% if perms.core.delete_diaperchange %} {% endif %}
{{ change.time|datetime_short }}{{ change.child }} {% if change.wet %}💦{% endif %} {% if change.solid %}💩{% endif %} {{ change.get_color_display }} {{ change.amount|default_if_none:"" }} {% include "core/render_tag_list.html" with tags=change.tags.all %}
{{ change.notes }}
{% trans "No diaper changes found." %}
{% include 'babybuddy/paginator.html' %} {% endblock %}