{% extends "base.html" %} {% block title %}Review — {{ application.full_name }}{% endblock %} {% block nav_applications %}active{% endblock %} {% block content %}
1. Personal Information
Full Name{{ application.full_name }}
Date of Birth{{ application.date_of_birth|date:"d M Y" }}
Gender{{ application.get_gender_display }}
Nationality{{ application.nationality }}
Phone{{ application.phone_number }}
Email{{ application.email }}
District{{ application.district|default:"—" }}
Address{{ application.physical_address }}
{% if application.national_id %}
National ID{{ application.national_id }}
{% endif %}
2A. Academic Qualifications
Highest Qualification {{ application.get_highest_education_level_display }} {% if application.education_other %} — {{ application.education_other }}{% endif %}
Year Completed{{ application.year_of_completion }}
Last Institution{{ application.last_school_attended }}
Institution Location{{ application.institution_location|default:"—" }}
{% if application.exam_index_number or application.exam_body or application.exam_year %}
2B. National Examination Details
Index Number{{ application.exam_index_number|default:"—" }}
Examination Body {% if application.exam_body == 'other' %}{{ application.exam_body_other|default:"Other" }} {% else %}{{ application.exam_body|default:"—" }}{% endif %}
Year of Exam{{ application.exam_year|default:"—" }}
Grade / Result{{ application.exam_grade|default:"—" }}
{% endif %} {% if application.non_formal_level or application.apprenticeship_details or application.practical_experience %}
2C. Skills-Based / Non-Formal Education
{% if application.non_formal_level %}
Highest Non-Formal Level{{ application.non_formal_level }}
{% endif %} {% if application.apprenticeship_details %}
Apprenticeship / Training
{{ application.apprenticeship_details }}
{% endif %} {% if application.practical_experience %}
Relevant Experience
{{ application.practical_experience }}
{% endif %}
{% endif %} {% if application.former_institution_name %}
3. Former Institution
Institution Name{{ application.former_institution_name }}
Level Completed{{ application.former_institution_level|default:"—" }}
Year Completed{{ application.former_institution_year|default:"—" }}
District / Location{{ application.former_institution_district|default:"—" }}
{% endif %} {% if application.current_occupation or application.employer_name %}
4. Work Experience
Current Occupation{{ application.current_occupation|default:"—" }}
Employer{{ application.employer_name|default:"—" }}
Years of Experience{{ application.years_of_experience|default:"—" }}
{% if application.work_duties %}
Duties
{{ application.work_duties }}
{% endif %}
{% endif %}
5. Next of Kin / Guardian

Primary

Name{{ application.emergency_contact_name }}
Relationship{{ application.get_emergency_contact_relationship_display }}
Phone{{ application.emergency_contact_phone }}
Email{{ application.emergency_contact_email|default:"—" }}
Occupation{{ application.emergency_contact_occupation|default:"—" }}
Address{{ application.emergency_contact_address|default:"—" }}
{% if application.secondary_contact_name %}

Secondary

Name{{ application.secondary_contact_name }}
Relationship{{ application.get_secondary_contact_relationship_display }}
Phone{{ application.secondary_contact_phone|default:"—" }}
Email{{ application.secondary_contact_email|default:"—" }}
Occupation{{ application.secondary_contact_occupation|default:"—" }}
Address{{ application.secondary_contact_address|default:"—" }}
{% endif %}
6. Program Application
Program Applied{{ application.program_applied }}
Level{{ application.program_applied.get_level_display }}
Preferred Start Date{{ application.preferred_start_date|default:"—" }}
{% if application.skills_profile %}
7. Skills Profile
{% for skill in application.skills_profile %} {{ skill|title }} {% endfor %} {% if application.skills_other %} {{ application.skills_other }} {% endif %}
{% endif %}
Submitted Documents
{% if documents %}
{% for doc in documents %}
{{ doc.get_document_type_display }}
{{ doc.filename }}
{% endfor %}
{% else %}

No documents uploaded.

{% endif %}
Application Fee
{% if application.application_fee_paid %} Paid {% else %} Pending {% endif %}
{% if application.application_fee_paid %}
UGX 50,000 received
{% if application.application_fee_paid_at %}
Paid on {{ application.application_fee_paid_at|date:"d M Y, H:i" }}
{% endif %} {% if application.application_fee_txref and application.application_fee_txref != 'MANUAL' %}
Ref: {{ application.application_fee_txref }}
{% elif application.application_fee_txref == 'MANUAL' %}
Manually recorded
{% endif %}
{% else %}

Application fee of UGX 50,000 has not been paid yet. You can manually mark it as paid for cash/walk-in payments.

{% csrf_token %}
{% endif %}
Review Decision

Submitted: {{ application.submitted_at|date:"d M Y, H:i" }}

{% if application.status != 'approved' and application.status != 'rejected' %} {% if application.status == 'pending' %}
{% csrf_token %}
{% endif %}
{% csrf_token %}

Approving creates a student account and emails login credentials.


{% csrf_token %}
{% elif application.status == 'approved' %}
Approved on {{ application.reviewed_at|date:"d M Y" }} {% if application.reviewed_by %}by {{ application.reviewed_by.get_full_name }}{% endif %}
{% if application.applicant_user %} {% endif %} {% elif application.status == 'rejected' %}
Rejected on {{ application.reviewed_at|date:"d M Y" }} {% if application.rejection_reason %}
{{ application.rejection_reason }} {% endif %}
{% endif %} {% if application.admin_notes and application.status != 'pending' %}
Admin Notes:
{{ application.admin_notes }}
{% endif %}
{# /col-lg-4 #}
{% endblock %}