{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load static %} {% load bootstrap3 %} {% block title %}Merge Persons{% endblock %} {% block content %}

Merge Person Records

This tool will merge two Person records into one. If both records have logins and you want to retain the one on the left, use the Swap button to swap source and target records.

{% if method == 'post' %}{% csrf_token %}{% endif %}
{% bootstrap_field form.source %} {% if source %} {% with person=source %} {% include "person/person_info.html" %} {% endwith %} {% endif %}
{% bootstrap_field form.target %} {% if target %} {% with person=target %} {% include "person/person_info.html" %} {% endwith %} {% endif %}
{% if change_details %} {% endif %} {% if warn_messages %} {% for message in warn_messages %} {% endfor %} {% endif %} {% if method == 'post' %} Swap {% endif %}
{% endblock %}