{% extends "base.html" %} {% block title %}Descendants of {{ person.name }} - Family Tree - KJV Study{% endblock %} {% block description %}All descendants of {{ person.name }} in the biblical genealogy.{% endblock %} {% block head %} {% endblock %} {% block content %}

Descendants of {{ person.name }}

{% if person.generation %}

Generation {{ person.generation }} from Adam

{% endif %}
{% if descendants_tree %}

This page shows all known descendants of {{ person.name }} traced through the biblical genealogies. The tree displays multiple generations showing the lineage recorded in Scripture.

Descendant Tree

{# Recursive macro to display descendants #} {% macro render_descendants(node, is_root=False) %}
{% if node.generation %}
Generation {{ node.generation }} from Adam
{% endif %} {% if node.child_count > 0 %}
{{ node.child_count }} {% if node.child_count == 1 %}child{% else %}children{% endif %}
{% endif %} {% if node.children %} {% for child in node.children %} {{ render_descendants(child) }} {% endfor %} {% endif %}
{% endmacro %} {{ render_descendants(descendants_tree, is_root=True) }}
{% else %}

No descendants found for {{ person.name }} in the biblical genealogies.

{% endif %} {% endblock %}