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

Approve Application

The following request is awaiting for {{ authorised_text }} to approve it:

Applicant Details

Short name:{{ application.applicant.get_short_name }}
Full name:{{ application.applicant.get_full_name }}
Institute:{{ application.applicant.institute }}
Username:{{ application.applicant.username }}
Email:{{ application.applicant.email|urlize }}
{% if application.content_type.model == 'applicant' %}

Similar People

{% csrf_token %}

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

{% get_similar_people_table application.applicant as table %} {% render_table table %} {% if 'duplicate' in actions %} {% endif %}
{% endif %} {% application_request application %}

Confirm

{{ application.applicant }} will receive an email once their application has been processed.


{% if form.fields %}

Please amend the following to suit.

{% endif %}
{% 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_plus %} Decline {% end_application_actions %}
{% endblock %}