{% extends '_nav.html' %} {% block content %}
{% include '_nav_top.html' %}

{{ Family['parent1']['firstname'] }}
{{ Family['parent1']['lastname'] }}

{{ Family['parent1']['address']}}
{{ Family['parent1']['postal'] }} {{ Family['parent1']['city'] }}

{{ Family['parent1']['phone'] }}
{{ Family['parent1']['email'] }}

{{ Family['parent2']['firstname'] }}
{{ Family['parent2']['lastname'] }}

{{ Family['parent2']['address']}}
{{ Family['parent2']['postal'] }} {{ Family['parent2']['city'] }}

{{ Family['parent2']['phone'] }}
{{ Family['parent2']['email'] }}

    {% if Children %}

    Kinderen

    {% for c in Children %} {% if c.classroom.id %} {% endif %} {% endfor %}
    Voornaam Leeftijd Klas
    {{ c.firstname }} {{ c.age }}{{ c.classroom.name }} {{ c.classroom.start_date[0:4] }} - {{ c.classroom.teacher_firstname }}
    {% else %}

    Geen kinderen gekoppeld aan dit gezin.

    Voeg nu het eerste kind toe {% endif %}
    {% endblock %}