{% autoescape None %} {% extends "gramps-base.html" %} {% block title %}{{sitename}}: {{opts.database}}, {{_(tview)}} {% end %} {% block heading %}{{sitename}}: {{opts.database}}, {{_(tview)}} {% end %} {% block content %}
{% include "detail_breadcrumb.html" %}
{% module xsrf_form_html() %} {% if user %} {% else %} {{ form.render("father_handle", user, action, link="/person/%s" % form.instance.father_handle) }} {% end %} {% if user %}
Spouse 1: Spouse 2:
Name: {% if action != "view" %}
{% else %} {{ form.render("father_handle", user, action, link="/person/%s" % form.instance.father_handle) }} {% end %}
Name: {% if action != "view" %}
{% else %} {{ form.render("mother_handle", user, action, link="/person/%s" % form.instance.mother_handle) }} {% end %} {% else %} {{ form.render("mother_handle", user, action) }} {% end %}
Birth: {{ form.birth_date(form.family_father(form.instance)) }} Birth: {{ form.birth_date(form.family_mother(form.instance)) }}
Death: {{ form.death_date(form.family_father(form.instance)) }} Death: {{ form.death_date(form.family_mother(form.instance)) }}
Relationship information:
{{ form.get_label("gid") }}: {{ form.render("gid", user, action) }} {{ form.get_label("tag_list") }}: {{ form.render("tag_list", user, action) }}
{{ form.get_label("private") }}: {{ form.render("private", user, action) }}
{{ form.get_label("type") }}: {{ form.render("type", user, action) }}
{% if user %} {% if action != "edit" %}
{{ form.make_icon_button(_("Add Family"), "/family/add", icon="+") }} {{ form.make_icon_button(_("Edit Family"), "/family/%(handle)s/edit", icon="?", handle=form.get("handle")) }} {{ form.make_icon_button(_("Delete Family"), "/family/%(handle)s/delete", icon="-", handle=form.get("handle")) }}
{% else %} {{form.make_button(_("Cancel"), form.instance.make_url())}} {% end %} {% else %} {% end %}
{{ children_table(form, user, action) }}
{{ event_table(form, user, action) }}
{{ citation_table(form, user, action, form.instance.citation_list) }}
{{ attribute_table(form, user, action, form.instance.attribute_list) }}
{{ note_table(form, user, action, form.instance.note_list) }}
{{ media_table(form, user, action, form.instance.media_list) }}
{{ lds_table(form, user, action, form.instance.lds_ord_list) }}
{% end %}