{% extends "admin.html" %} {% load url from future %} {% block headtitle %}Applicants - {% endblock %} {% block exam_applications_active %} active {% endblock %} {% block content %}
{% if unpaid_applicants %}

Unpaid Applications

{% for applicant in unpaid_applicants %} {% endfor %}
Name Email Address Submitted Status Payment Method
{% if applicant.first_name %}{{ applicant.first_name }} {{ applicant.surname }}{% else %}{{ applicant.member }}{% endif %} {% if applicant.email_address %}{{ applicant.email_address }}{% else %}{{ applicant.member.user.email }}{% endif %} {{ applicant.completed_time }} Complete {{ applicant.get_payment_type_display }} Mark Paid
{% endif %} {% if complete_applicants %}

Complete Applications

{% for applicant in complete_applicants %} {% endfor %}
Name Email Address Submitted Status
{% if applicant.first_name %}{{ applicant.first_name }} {{ applicant.surname }}{% else %}{{ applicant.member }}{% endif %} {% if applicant.email_address %}{{ applicant.email_address }}{% else %}{{ applicant.member.user.email }}{% endif %} {{ applicant.completed_time }} Complete
{% endif %} {% if incomplete_applicants %}

Incomplete Applications

{% for applicant in incomplete_applicants %} {% endfor %}
Name Email Address Submitted Stage
{% if applicant.first_name %}{{ applicant.first_name }} {{ applicant.surname }}{% else %}{{ applicant.member }}{% endif %} {% if applicant.email_address %}{{ applicant.email_address }}{% else %}{{ applicant.member.user.email }}{% endif %} {{ applicant.completed_time }} {{ applicant.get_status_display }}
{% endif %} {% if not complete_applicants and not incomplete_applicants and not unpaid_applicants %}

There are no applications.

{% endif %}

Back to Forms

{% endblock %}