{% extends "management/base.html" %} {% load lucide ui i18n %} {% block heading %}{% trans "Add family" %}{% endblock heading %} {% block panel %}
{% csrf_token %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %}

{% lucide "user" size=18 %} {% trans "Parent / guardian" %}

{% trans "Gets a login -- they set a password via the reset link if this is a new email." %}

{% form_field form.parent_first_name %} {% form_field form.parent_last_name %} {% form_field form.parent_email %} {% form_field form.parent_is_member %}

{% lucide "baby" size=18 %} {% trans "Child" %}

{% trans "No login of their own -- the parent above manages things for them." %}

{% form_field form.child_first_name %} {% form_field form.child_last_name %} {% form_field form.child_date_of_birth %}
{% lucide "arrow-left" size=16 %} {% trans "Cancel" %}
{% endblock panel %}