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

{% trans "Children" %} {% if perms.core.add_child %} {% trans "Add Child" %} {% endif %}

{% include 'babybuddy/filter.html' %}
{% for child in object_list %} {% empty %} {% endfor %}
{% trans "First Name" %} {% trans "Last Name" %} {% trans "Birth Date" %} {% trans "Actions" %}
{% include "core/child_thumbnail.html" %} {{ child.first_name }} {{ child.last_name }} {{ child.birth_date }}
{% if perms.core.change_child %} {% endif %} {% if perms.core.delete_child %} {% endif %}
{% trans "No children found." %}
{% include 'babybuddy/paginator.html' %} {% endblock %}