{% 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" %}
{{ form.render("father_handle", user, "view", link="/person/%(handle)s", _class="get_focus", handle=form.instance.father_handle) }} and
{{ form.render("mother_handle", user, "view", link="/person/%(handle)s", handle=form.instance.mother_handle) }}
{# comment #} 4 cols {# end #}
{% if messages %}
The following fields have errors. Please correct and try again.
{# familyform.errors #}
{% end %}
Relationship information |
{{ form.get_label("gid") }}: |
{{ form.render("gid", user, action) }} |
{# form.get_label("frel") #}: |
{# form.render("frel.type", user, action) #} |
{{ form.get_label("tag_list") }}: |
{{ form.render("tag_list", user, action) }} |
{{ form.get_label("private") }}: |
{{ form.render("private", user, action) }} |
{% if user %}
{% if action == "edit" %}
{# make_button "Cancel" "/family/%s" family.handle args #}
{% else %}
{% if action == "add" %}
{# make_button "Cancel" "/family/" args #}
{% else %}
{{ make_icon_button(_("Add Family"), "/family/add", icon="+") }}
{{ make_icon_button(_("Edit Family"), "/family/%(handle)s/edit", icon="?", handle=form.get("handle")) }}
{{ make_icon_button(_("Delete Family"), "/family/%(handle)s/delete", icon="-", handle=form.get("handle")) }}
{% end %}
{% 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 %}