{% extends "public_base.html" %} {% load crispy_forms_tags static %} {% block title %}Check Application Status{% endblock %} {% block content %}

Check Application Status

Enter your reference number and email to check your application status.

{% csrf_token %} {% crispy form %}
{% if error %}
{{ error }}
{% endif %} {% if application %}
{{ application.full_name }}

{{ application.reference_number }}

{{ application.get_status_display }}
Program
{{ application.program_applied }}
Submitted
{{ application.submitted_at|date:"d M Y" }}
{% if application.status == 'awaiting_payment' %}
Application Fee Required. Your application details have been saved but the UGX 50,000 non-refundable application fee has not been paid yet. Your application will not be reviewed until payment is complete.
Pay UGX 50,000 Application Fee Now {% elif application.status == 'approved' %}
Congratulations! Your application was approved. Check your email for your login credentials to access the student portal.
{% elif application.status == 'rejected' %}
Application Not Approved. {% if application.rejection_reason %} Reason: {{ application.rejection_reason }} {% endif %} Contact us at info@mlsfoundationug.org for more information.
{% elif application.status == 'pending' or application.status == 'under_review' %}
Your application is being reviewed. We will notify you by email once a decision is made.
{% endif %} {% if documents %}
Supporting Documents
{% if uploads_allowed %}

Upload any missing documents or replace one before your application is decided. PDF, JPG or PNG — max 5 MB.

{% else %}

Documents can no longer be changed for this application.

{% endif %}
{% for d in documents %}
{{ d.label }}
{% if d.doc %} {{ d.doc.filename }} {% else %} Not uploaded {% endif %}
{% if uploads_allowed %}
{% csrf_token %}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}