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

Children

{% include 'babybuddy/filter.html' %}
{% for child in object_list %} {% empty %} {% endfor %}
First Name Last Name Birth Date Actions
{% thumbnail child.picture 40x40 upscale crop as thumb %} {{ child.first_name }} {{ child.last_name }} {{ child.birth_date }}
{% if perms.core.change_child %} {% endif %} {% if perms.core.delete_child %} {% endif %}
No children found.
{% include 'babybuddy/paginator.html' %} {% if perms.core.add_child %} Add a Child {% endif %} {% endblock %}