{% extends 'core/base.html' %} {% load i18n widget_tweaks %} {% block title %}Children{% endblock %} {% block content %}

Children

{% for child in object_list %} {% empty %} {% endfor %}
# First Name Last Name Birth Date Actions
{{ child.id }} {{ child.first_name }} {{ child.last_name }} {{ child.birth_date }}
No children added.
Add a Child {% endblock %}