{% 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 %}
Find individuals in the biblical genealogy
{% if query %}Found {{ results|length }} individual{% if results|length != 1 %}s{% endif %} matching "{{ query }}"
{% for result in results %}
{% 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 %}
No results found for "{{ query }}"
{% endif %}