{% extends "admin.html" %} {% load url from future %} {% block headtitle %}Applicants - {% endblock %} {% block exam_applications_active %} active {% endblock %} {% block content %}
| 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 | {% endfor %} | |
There are no applications.
{% endif %}