{% extends 'web/base.html' %} {% load bootstrap3 %} {% block title %}Children{% endblock %} {% block flash %} {% if form.non_field_errors %} {% endif %} {% endblock %} {% block content %}

My Account

{% bootstrap_messages %}
{% include 'web/_account-navigation.html' with current_page="children-list" %}

Add Child

{% csrf_token %} {% bootstrap_form form %} {% buttons %}
Cancel
{% endbuttons %}

{% if objects %}
{% for child in objects %} {% endfor %}
Name Birthday
{{ child.given_name }} {{ child.birthday }} Update child
{% else %}

No child profiles registered!

{% endif %}
{% endblock %}