{% extends "forms.html" %} {% load forms %} {% load applications %} {% load render_table from django_tables2 %} {% block title %}Duplicate Applicant{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

The following applicant in this application has been declared a duplicate:

Applicant Details

Name:{{ application.applicant }}
Institute:{{ application.applicant.institute }}
Username:{{ application.applicant.username }}
Email:{{ application.applicant.email|urlize }}
{% if not application.existing_person %} {% if application.applicant.similar_people %}
{% csrf_token %}

Similar People

Please check that the applicant isn't an existing user.

{% get_similar_people_table application.applicant as table %} {% render_table table %}
{% endif %} {% endif %}

Confirm

Please replace the applicant with an existing person, reopen the application, or cancel it.

{% csrf_token %}
{% load forms %} {% if form.errors or form.non_field_errors %}
Please correct the error(s) below.
{% endif %}
{{ form.non_field_errors }} {% form_as_div form %}
{% application_actions %}
{% endblock %}