{% 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() %}
{{ _("Associated person") }}: {{ form.display_name_from_field_handle(form.path + ".ref") }}
{{_("Private") }}: {{ form.render(form.path + ".private", user, action) }}
{{ _("Relation") }}: {{ form.render(form.path + ".rel", user, action) }}
{% if user %} {% if action == "edit" %} {{form.make_button(_("Cancel"), form.url)}} {% else %}
{{ form.make_icon_button(_("Add Association"), form.url + "/add", icon="+") }} {{ form.make_icon_button(_("Edit Association"), form.url + "/edit", icon="?") }} {{ form.make_icon_button(_("Delete Association"), form.url + "/delete", icon="-") }}
{% end %} {% else %} {% end %}
{{ citation_table(form, user, action, form.subitem.citation_list, form.path) }}
{{ note_table(form, user, action, form.subitem.note_list, form.path) }}
{% end %}