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

Children

{% for child in object_list %} {% empty %} {% endfor %}
First Name Last Name Birth Date Actions
{{ child.first_name }} {{ child.last_name }} {{ child.birth_date }}
{% if perms.core.view_child %} {% endif %} {% if perms.core.change_child %} {% endif %} {% if perms.core.delete_child %} {% endif %}
No children found.
{% include 'babyblotter/paginator.html' %}
{% if perms.core.add_child %} Add a Child {% endif %} {% endblock %}