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

Ancestors of {{ person.name }}

{% if person.generation %}

Tracing back from Generation {{ person.generation }}

{% endif %}
{% if ancestors_tree %}

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

Ancestor Tree

{# Recursive macro to display ancestors #} {% macro render_ancestors(node, is_root=False) %}
{% if node.generation %}
Generation {{ node.generation }} from Adam
{% endif %} {% if node.parents %}
Parents
{% for parent in node.parents %} {{ render_ancestors(parent) }} {% endfor %} {% endif %}
{% endmacro %} {{ render_ancestors(ancestors_tree, is_root=True) }}
{% else %}

No ancestors found for {{ person.name }} in the biblical genealogies. This may be the earliest known person in this lineage.

{% endif %} {% endblock %}