{% extends "base.html" %} {% block title %}Search Family Tree - KJV Study{% endblock %} {% block description %}Search the biblical family tree from Adam to Jesus Christ.{% endblock %} {% block content %}

Search Family Tree

Find individuals in the biblical genealogy

{% for name in all_names %}
{% if query %}

Results

{% if results %}

Found {{ results|length }} individual{% if results|length != 1 %}s{% endif %} matching "{{ query }}"

{% for result in results %}

{{ result.name }}

{% if result.generation %}Generation {{ result.generation }}{% endif %} {% if result.birth_year != "Unknown" %}
Born: {{ result.birth_year }}{% endif %} {% if result.death_year != "Unknown" %}
Died: {{ result.death_year }}{% endif %}

{% endfor %} {% else %}

No results found for "{{ query }}"

{% endif %}
{% endif %}

← Back to Family Tree

{% endblock %}