{% extends "_club_base.html" %} {% load i18n lucide %} {% block head_title %}{% trans "My family" %}{% endblock head_title %} {% block main %}

{% lucide "users" size=20 %} {% trans "My family" %}

    {% for child in children %}
  • {{ child }} {% if child.date_of_birth %}— {{ child.date_of_birth|date:"j F Y" }}{% endif %}
  • {% empty %}
  • {% blocktrans %}Nobody is linked to you yet. If your child plays here, ask the club to link you.{% endblocktrans %}
  • {% endfor %}
{% endblock main %}