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

{% trans "Children" %}

{% include 'babybuddy/filter.html' %}
{% for child in object_list %} {% empty %} {% endfor %}
{% trans "First Name" %} {% trans "Last Name" %} {% trans "Birth Date" %} {% trans "Actions" %}
{% if child.picture %} {% thumbnail child.picture 40x40 upscale crop as thumb %} {% else %} {% endif %} {{ 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' %} {% if perms.core.add_child %} {% trans "Add a Child" %} {% endif %} {% endblock %}